ljxu 发表于 2012-12-13 12:35:12

js 代码调用

js 代码:
    ZeroClipboard.setMoviePath("../js/ZeroClipboard.swf");
            var clip1 = new ZeroClipboard.Client();
            clip1.setHandCursor(true);
            clip1.addEventListener('mouseOver', function (client) {
                clip1.setText(getValue(list));
            });
            clip1.addEventListener('complete', function (client, text) {
                if (userlist.isEmpty()) return showErrMsg("没有任何数据");
                alert("成功复制到粘贴板,请打开WORD或EXCEL粘贴");
            });
            clip1.glue('btn_export1');

请问以上这段JS代码如何调用?

wua0550 发表于 2012-12-13 23:14:20

本帖最后由 wua0550 于 2012-12-13 23:18 编辑

$oIE.document.parentWindow.execscript("clip2.glue('btn_export2')")
试试看吧~~
页: [1]
查看完整版本: js 代码调用