这就是我所拥有的,它不起作用。请帮忙。
var myWindow = window.open("","","width=600,height=450");
newContent = myWindow.document.createElement("textarea");
myWindow.document.appendChild(newContent);
答案 0 :(得分:2)
function openWin(){
var myWindow = window.open("","","width=600,height=450");
myWindow.document.write("<textarea rows='30' cols='70'></textarea>");
}
答案 1 :(得分:1)
var myWindow = window.open("","","width=600,height=450");
newContent = myWindow.document.createElement("textarea");
myWindow.document.appendChild(newContent);
发送错误:
Uncaught HierarchyRequestError:无法执行'appendChild' 'Node':'INPUT'类型的节点可能不会插入到类型的节点内 '#document'。
所以只需改变
myWindow.document.appendChild(newContent);
要
myWindow.document.body.appendChild(newContent);