2014-10-30 75 views
0

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

回答

0

如果你想喲編輯數據之前將其複製,你必須使用beforecopy事件:我想你也可以修改裏面過你的表。

相關問題