先贴代码
var body = document.body;
var iframe = document.createElement("iframe");
iframe.id = "one";
body.appendChild(iframe);
var h = document.createElement("h1");
h.innerHTML = "what's the fuck what's the fuckwhat's the fuckwhat's the fuckwhat's the fuckwhat's the fuckwhat's the fuckwhat's  the fuckwhat's the fuckwhat's the fuckwhat's the fuckwhat's the fuckwhat's the fuck";alert("1");
// var fbody = document.getElementById("one");
var fbody1 = iframe.contentWindow.document.body;
fbody1.appendChild(h);
在火狐上运行...
当alert("1")注销掉的时候...
h标签的文本内容看不到...
用firebug查看的话...
如果alert("1")注销了...
h1标签是没有的...
请问这是什么问题...???