我正在这个页面上进行测试,但我不确定我错过了什么。
// Two frames on the page
> document.getElementsByTagName("frame").length
2
// Same domain, so no security restrictions
> document.getElementsByTagName("frame")[0].src
"http://www.quackit.com/html/templates/frames/menu_1.html"
> window.location.href
"http://www.quackit.com/html/templates/frames/frames_example_1.html"
// Can't access the document
> document.getElementsByTagName("frame")[0].document
undefined
看起来这应该有效,那么问题是什么?它需要在 IE8 中工作,但我也在 Chrome 中进行测试(最新稳定版)。