码迷,mamicode.com
首页 > 其他好文 > 详细

点击箭头 隐藏/展开 左侧导航

时间:2014-09-19 15:16:15      阅读:304      评论:0      收藏:0      [点我收藏+]

标签:style   color   io   ar   strong   div   sp   cti   代码   

一、确保左侧导航div固定宽度,右侧内容div不设置宽度

二、在左侧内容div  和 右侧内容 div 中间 添加如下代码:

   <div style="width:10px; float:left; ">  

      <table>  

         <tr><td height="200px"></td></tr>

        <tr><td><img id="img_arrow" src="/images/arrow_left.jpg" onclick="usr()"/></td></tr>  

      </table>

</div>

   <script>  

function usr()  {  

    var img_arrow= document.getElementById("img_arrow");  

    if(img_arrow.src.indexOf("arrow_left") >= 0)    {      

     //收缩   arrow_left 左向箭头名称,arrow_right 右向箭头名称

     img_arrow.src=img_arrow.src.replace("arrow_left","arrow_right");      //   切换箭头图片

     document.getElementById("s4-leftpanel").style.display="none";          // 隐藏左侧导航

     document.getElementById("MSO_ContentTable").style["margin-Left"]="10px";       //   修改、减小右侧导航margin-Left,箭头图片宽度为10px

    }  

else    {  

       //展开

       img_arrow.src=img_arrow.src.replace("arrow_right","arrow_left");     

       document.getElementById("s4-leftpanel").style.display="block";    

       document.getElementById("MSO_ContentTable").style["margin-Left"]="203px";

     }

  }    

</script>

 

点击箭头 隐藏/展开 左侧导航

标签:style   color   io   ar   strong   div   sp   cti   代码   

原文地址:http://www.cnblogs.com/mySaveblogs/p/3981351.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!