回复 1楼wlp5402的帖子
你好,在 firefox 中可以通过 GetActiveCol 方法获取 ActiveCol。
- function Button1_onclick() {
- var spread1 = document.getElementById("<%=FpSpread1.ClientID %>");
- var activeCol;
- if (document.all) {
- activeCol = spread1.ActiveCol;
- }
- else {
- activeCol = spread1.GetActiveCol();
- }
- alert(activeCol);
- }
复制代码 |