我希望在使用zclip复制文本时禁用jquery
zclip
警报
这段代码工作正常,但我想禁用警报!
$(document).ready(function() {
$("button.copy-javadomain").zclip ({
path : "ZeroClipboard.swf",
copy : function() {
return $("input.ifram").val();
}
});
});
答案 0 :(得分:0)
你需要注释掉这一行:
alert("Copied text to clipboard:\n\n " + text);
jquery.zclip.js 中的
或使用 afterCopy
回调功能
$(document).ready(function() {
$("button.copy-javadomain").zclip ({
path : "ZeroClipboard.swf",
copy : function() {
return $("input.ifram").val();
},
afterCopy:function(){
//leave it blank to override the default alert message
}
});
});
http://www.steamdev.com/zclip/ ---参考链接