朋友们,美好的一天。我不能让 zeroclipboard 与我的页面一起工作。在 HTML 页面中,我有:
<script type="text/javascript" src="ZeroClipboard.js"></script> //Script was loaded successfully.
...
<button id="copy_clipboard">Test me</button>
<script>
ZeroClipboard.setMoviePath('http://olymp/ZeroClipboard.swf'); //Path correct. It's local php server
var clip = new ZeroClipboard.Client();
clip.setText('test');
clip.glue('copy_clipboard');
</script>
这给我一个错误: ZeroClipboard.setMoviePath is not a function
删除后
ZeroClipboard.setMoviePath('http://olymp/ZeroClipboard.swf');
我收到一个错误:
ZeroClipboard.Client 不是构造函数