我正在使用 zclip 页面提供的干净示例代码:
$('a#copy-dynamic').zclip({
path:'js/ZeroClipboard.swf',
copy:function(){return $('input#dynamic').val();}
});
这是HTML:
<a href="#" id="copy-dynamic" class="">Click here to copy the value of this input:</a>
<input type="text" id="dynamic" value="Insert any text here." onfocus="if(this.value=='Insert any text here.'){this.value=''}" onblur="if(this.value==''){this.value='Insert any text here.'}">
如果 HTML 在引导程序主页内,它可以正常工作,但如果我将 html 移动到引导程序模式窗口内(即,在模式的 div 元素内),它会停止工作。
我怎样才能让它工作?