我使用它来选择所有内容,但如何同时将其复制到剪贴板?
<textarea onfocus="this.select();" onmouseup="return false;" name="tags" cols="50" rows="5">
我已经尝试了以下代码,但它没有成功:
copy_sel.clipboard({
path: 'jquery.clipboard.swf',
copy: function() {
var text = $('textarea#tags').val();
alert('Text copied. Try to paste it now!asdfasdf: '+text);
return $('textarea#tags').val();
}
});