1
我從來沒有使用zclip,但谷歌搜索後知道如何調用zclip。zclip內功能
$("#copy").zclip({
path: "js/ZeroClipboard.swf",
copy: function(){
return $(this).prev().val();
}
});
但是我有很多按鈕,它們是作爲共享按鈕工作的。點擊任何按鈕,一個函數被執行。我必須在函數內複製一個字符串。
function copy(commentId){
var share_path = window.location.protocol + window.location.host + window.location.pathname + '#';
share_path += <?='"'.$sharePath.'"';?> + commentId;
//copy the string share_path
alert(share_path);
}
你會如何解決這個問題?請與我分享。