有关parent.frame.cols在firefox浏览器上不兼容的问题解决
程序员文章站
2022-04-10 14:55:32
...
IE(不兼容FireFox):
if(parent.myFrame.cols == "199,7,*") {
parent.myFrame.cols="0,7,*";
document.getElementById("ImgArrow").src="images/switch_right.gif";
document.getElementById("ImgArrow").alt="打开左侧导航栏";
} else {
parent.myFrame.cols="199,7,*";
document.getElementById("ImgArrow").src="images/switch_left.gif";
document.getElementById("ImgArrow").alt="隐藏左侧导航栏";
}
二者都兼容:
if(window.parent.document.getElementById("myFrame").cols == "199,7,*") {
window.parent.document.getElementById("myFrame").cols ="0,7,*";
document.getElementById("ImgArrow").src="images/switch_right.gif";
document.getElementById("ImgArrow").alt="打开左侧导航栏";
} else {
window.parent.document.getElementById("myFrame").cols="199,7,*";
document.getElementById("ImgArrow").src="images/switch_left.gif";
document.getElementById("ImgArrow").alt="隐藏左侧导航栏";
}
转载于:https://my.oschina.net/garyun/blog/602817
上一篇: opencv中的imread不支持中文路径的解决办法
下一篇: 兼容浏览器获取元素属性的方法