主要JS代码如下:
<script type="text/javascript">
function SetSpreadCursor() {
var cell = event.srcElement;
while ((cell != null) && (cell.id.indexOf("<%=FpSpread1.ClientID %>") == -1)) {
cell = cell.parentElement;
}
if ((cell != null) && (cell.id.indexOf("<%=FpSpread1.ClientID %>") != -1)) {
event.srcElement.style.cursor = "help";
}
}
</script>
复制代码
(7.09 K, 下载次数:18)