我想将图像从 iframe 复制到 div ot 到 textarea 像这样jsfiddle.net/purmou/xEtL9/
<textarea rows="10" cols="40" id="content">
</textarea>
<div id="fake">
<iframe width="100%" height="400px" src="http://www.w3schools.com/"></iframe>
</div>
和
$(function(){
$("#fake iframe").click(function(){
var update = $("<div>").append(
$("<iframe>").attr("src", $(this).attr("src"))
).html();
$("#content").val(function( i, v ) {
return v + update;
});
});
});
但是对于 iframe 它不起作用..有什么建议吗?