函数中的zclip

时间:2013-12-19 21:42:20

标签: jquery 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);
}

你会如何解决这个问题?请与我分享。

1 个答案:

答案 0 :(得分:1)

我刚刚做了这个

prompt('Please copy this link to share', share_path);

希望它也适合你。