假设我在div中有嵌入的推文:
<div id="tweet">
<blockquote class="twitter-tweet"><p>A lion would never cheat on his wife. But a Tiger Wood.</p>— Puns (@omgthatspunny) <a href="https://twitter.com/omgthatspunny/status/301482080490115072">February 13, 2013</a></blockquote>
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
<div id="tweet-insert"></div>
我想复制推文并将其插入另一个div:
var tweetHtml = $("#tweet").html();
$("#tweet-insert").html(tweetHtml);
这是 fiddle 。
这不起作用,它让我 :(
有关修复的想法吗?
答案 0 :(得分:1)
脚本加载异步,因此当您尝试复制内容时,它可能还没有加载。
当脚本的load
- 事件触发时复制内容:http://jsfiddle.net/doktormolle/MSfvT/
答案 1 :(得分:0)
您可以像这样使用jQuery的.clone()
:
var tweetCopy = $("#tweet").clone();
$("#tweet-insert").append(tweetCopy);
jsFiddle:http://jsfiddle.net/jfriend00/9Segq/