我现在正在使用 frameset 和 frame,但我对如何更改框架 URL 感到非常困惑。我的客户在他们想要设置/更改框架 URL 的地方使用 location 或 src 。有时位置有效,有时src有效,所以我要找出发生了什么。
我创建了 3 个 html 文件:parent.html、left.html、right.html。这是parent.html内容
<frameset cols="*,*">
<frame id="left" src="left.html">
<frame id="right" src="right.html">
</frameset>
这是left.html内容
<head>
<script>
function LocationThis() {
window.frames['innerleft'].location = "http://prntscr.com";
}
function SrcThis() {
window.frames['innerleft'].src = "http://prntscr.com";
}
function LocationOther() {
window.parent.frames['right'].location = "http://prntscr.com";
}
function SrcOther() {
window.parent.frames['right'].src = "http://prntscr.com";
}
</script>
</head>
<body>
<h1>Left</h1>
<button type="button" onclick="LocationThis();">Location this</button>
<button type="button" onclick="SrcThis();">Src this</button>
<button type="button" onclick="LocationOther();">Location other</button>
<button type="button" onclick="SrcOther();">Src other</button>
<hr/>
<iframe id="innerleft" src="" />
</body>
在这种情况下只有src有效。那么为什么有时location可以工作,但src却不行呢?好的,现在我像这样更改脚本
//window.parent.frames['right'].location = "http://prntscr.com";
window.parent.frames[1].location = "http://prntscr.com";
然后位置工作正常。那么 frames['right'].src 和 frames[1].location 。但并非所有情况,有时 frames['right'].location 也能工作。当我删除 id 并仅使用框架名称时,我必须使用 location
<frame name="right" src="right.html">
就是这样。哦,感谢 IE 拒绝获取 src,所以我必须像这样检查
try {
window.parent.frames["id"].src = {url};
}
catch(er) {
window.parent.frames["id"].location = {url};
}
有没有一个巧妙的解决方案来解决这一切?