是否可以使用DOM windows.location将网页加载到iframe中? 或者其他一些方式,例如:
...
document.getElementByID("content").innerHTML ="http://google.com";
...
<div id="content"></div>
由于
答案 0 :(得分:1)
您缺少的可能是iframe的.src
属性:
document.getElementByID("content").src = "http://google.com";
(假设“content”是内框的ID)