我需要使用zeroclipboard将表复制到剪贴板。但我还需要通过添加列来编辑该表,然后再将其移动到剪贴板。
I use that code but nothing happened:
<code>
var clientTarget = new ZeroClipboard( $("#target-to-copy"), {
moviePath: "ZeroClipboard.swf",
debug: false
} );
clientTarget.on( "aftercopy", function (e) {
var editedTable=;
clipboard.setData( "text/plain", editedTable);*/
});
</code>
I run example on localhost server.