我正在努力创建一个选择集,以传递给zeroclipboard客户端,以基本格式化的形式复制各种HTML元素的内容。我可以直接从变量var myTextToCopy = "Hi, this is the text to copy!";
将文本传递给客户端,但无法使HTML元素的文本内容生效。
有人可以指出我哪里出错吗?
<script src="_assets/js/ZeroClipboard.js" type="text/javascript"></script>
<script language="JavaScript">
var clip = new ZeroClipboard.Client();
var myTextToCopy = $(".sideInfo ul:first-child").text() + "\r\n" + $(".sideInfo ul:nth-child(2)").text() + "\r\n" + $(".sideInfo ul:nth-child(3)").text() + $('.description').text();
clip.setText( myTextToCopy );
clip.glue( 'copyme' );
</script>
<div id="copyme">Copy To Clipboard</div>
<div class="sideInfo">
<ul>
<li>Episode: x</li>
<li>Production house: x</li>
<li>Contacts: Tim nicebutdim<br><a href="mailto:nicebutdim@dot.com">nicebutdim@dot.com</a></li>
</ul>
</div>
<div class="description">
Text text texttext <br /> text text text</div>
答案 0 :(得分:1)
而不是
clip.setText( txt );
使用
clip.setText( myTextToCopy );
然后尝试使用
clip.setText($(".sideInfo").text());
最后在你的代码周围添加这个
$(document).ready(function() {
// your code
)};