DOM windows.location到iframe

时间:2014-01-14 22:43:28

标签: html dom

是否可以使用DOM windows.location将网页加载到iframe中? 或者其他一些方式,例如:

...
document.getElementByID("content").innerHTML ="http://google.com";
...

<div id="content"></div>

由于

1 个答案:

答案 0 :(得分:1)

您缺少的可能是iframe的.src属性:

document.getElementByID("content").src = "http://google.com";

(假设“content”是内框的ID)