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="隐藏左侧导航栏";
    }

 

 

相关文章:

  • 2021-06-06
  • 2021-11-29
  • 2022-12-23
  • 2021-11-11
  • 2022-01-16
  • 2021-06-03
  • 2021-12-12
  • 2021-11-21
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-09
  • 2022-12-23
  • 2021-12-10
  • 2022-12-23
相关资源
相似解决方案