zoukankan      html  css  js  c++  java
  • 列表左边左右固定,右边可以左右滚动,且左右两边列表滚动时上下联动

    function funcsrcoll1()
    {
    rightdiv.scrollTop = leftdiv.scrollTop;//设置左边的div和右边div上下滚动距离相同,即左右上下滚动联动。
    }
    function funcsrcoll2()
    {
    leftdiv.scrollTop = rightdiv.scrollTop;//设置左边的div和右边div上下滚动距离相同,即左右上下滚动联动。
    Divtop.scrollLeft = rightdiv.scrollLeft;//设置左边的div和右边div左右滚动距离相同,即左右滚动联动。
    }
    function funcsrcoll3()
    {
    rightdiv.scrollLeft =Divtop.scrollLeft;//设置左边的div和右边div左右滚动距离相同,即左右滚动联动。
    }
    <body style="scroll: no">
    <form method="post" id="form1" name="form1">
    <div style=" 200px; height: 443px; float: left; overflow: hidden;">
    <div id="leftdiv" style=" 220px; height: 423px; overflow-y: auto; overflow-x: hidden;"
    onscroll="funcsrcoll1()">
    <div id="divMenu" style="position: fixed; margin-top: 0px;  200px; height: 423px;">
    <table cellpadding="0" cellspacing="1" width="100%" border="0" class="Table_List">
    <tr class="ListTableHeader">
    <td width="110px" nowrap="nowrap" align="center">
    部门
    </td>
    <td width="90px" nowrap="nowrap" align="center">
    下属部门
    </td>
    </tr>
    </table>
    </div>
    <table cellpadding="0" cellspacing="1" width="100%" border="0" class="Table_List">
    </table>
    </div>
    </div>
    <div id="menudiv" style=" 80%; height: 23px;margin-left:100px; margin-top: 0px; overflow: hidden;">
    <div id="Divtop" style=" 100%; height: 43px; overflow-x: auto; overflow-y: hidden;"
    onscroll="funcsrcoll3()">
    <script type="text/javascript">
    window.onload = function() {
    var width = $("#menudiv").width();
    $("#menudiv").width(width - 20);
    $("#Divtop").width(width);
    }
    </script>
    <div id="divMain" style="margin-left:0px;  100%; height: 100%;" >
    <table cellpadding="0" cellspacing="1" width="150%" border="0" class="Table_List">
    <tr class="ListTableHeader">
    <td width="10%" nowrap="nowrap" align="center">
    有效
    </td>
    <td width="10%" nowrap="nowrap" align="center">
    暂缓
    </td>
    <td width="10%" nowrap="nowrap" align="center">
    未知
    </td>
    <td width="8%" nowrap="nowrap" align="center">
    我租
    </td>
    <td width="8%" nowrap="nowrap" align="center">
    他租
    </td>
    <td width="8%" nowrap="nowrap" align="center">
    我售
    </td>
    <td width="8%" nowrap="nowrap" align="center">
    他售
    </td>
    <td width="8%" nowrap="nowrap" align="center">
    撤单
    </td>
    <td width="8%" nowrap="nowrap" align="center">
    电话错误
    </td>
    <td width="8%" nowrap="nowrap" align="center">
    待确认
    </td>
    <td width="10%" nowrap="nowrap" align="center">
    已驳回
    </td>
    </tr>
    </table>
    </div>
    </div>
    </div>
    <div id="rightdiv" style=" 80%; height: 420px; float: left; overflow: scroll"
    onscroll="funcsrcoll2()">
    <div id="divinner" style="float:left;  100%;">
    <script type="text/javascript">
    window.onload = function() {
    var width = $("#menudiv").width();
    $("#rightdiv").width(width + 20);
    $("#divinner").width(width);
    }
    </script>
    <table cellpadding="0" cellspacing="1" width="150%" border="0" class="Table_List">
    </table>
    </div>
    </div>
    </form>
    </body>
    </html>
  • 相关阅读:
    基于.net EF6 MVC5+WEB Api 的Web系统框架总结(2)-业务项目搭建
    基于Html5 Plus + Vue + Mui 移动App开发(三)-文件操作(读取、保存、更新数据)
    基于Html5 Plus + Vue + Mui 移动App 开发(二)
    Mysql数据库(一)-------安装
    Sublime---破解+安装+安装插件
    Bayboy功能详解
    MySQL基础语句
    python变量类型&字符串的内建函数使用
    数据库基础知识笔试题(一)
    软件测试笔试题(二)
  • 原文地址:https://www.cnblogs.com/wuchaofan1993/p/5993900.html
Copyright © 2011-2022 走看看