中工作,我利用zclip頁面提供的清潔示例代碼: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裏面bootstrap主頁面,但是如果我將html移動到引導模式窗口(即,在模式的div元素內),它將停止工作。
我如何得到它的工作?
我會試試看。謝謝! –