出于测试目的,我想将整个身体移动到<iframe>
。我这样做了:
$('<iframe width="300" height="600" id="someId"></iframe>').appendTo('body');
$('#someId').contents().find('body').append ($('body').html());
但没有效果。
答案 0 :(得分:1)
你试过吗
$('<iframe width="300" height="600" id="someId"></iframe>').append($('body').html());