zeroclipboard在复制到剪贴板之前编辑数据

时间:2014-10-30 16:14:49

标签: jquery zeroclipboard

我需要使用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.

1 个答案:

答案 0 :(得分:0)

如果你想在复制之前编辑数据,你必须使用beforecopy事件:我想你也可以修改你的表格。