您真的不需要jQuery:
var doc = document.getElementById('iframe').contentWindow.document;doc.open();doc.write('Test');doc.close();
如果绝对必须使用jQuery,则应使用
contents()
var $iframe = $('#iframe');$iframe.ready(function() { $iframe.contents().find("body").append('Test');});
请不要忘记,如果您使用的是jQuery,则需要按如下所示插入DOMReady函数:
$(function() { var $iframe = $('#iframe'); $iframe.ready(function() { $iframe.contents().find("body").append('Test'); });});
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)