zoukankan      html  css  js  c++  java
  • jquery可拖动表格调整列格子的宽度大小(转)

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    <html xmlns="http://www.w3.org/1999/xhtml">

    <head>

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

    <title>jquery可拖动表格调整列格子的宽度大小</title>

    </head>

    <body>

    <style type="text/css">

    table{border-collapse:collapse;border-spacing:0;}

    .listext th{background:#eee;color:#3366cc;}

    .listext th,.listext td{border:solid 1px #ddd;text-align:left;padding:10px;font-size:14px;}

    .rc-handle-container{position:relative;}

    .rc-handle{position:absolute;7px;cursor:ew-resize;*cursor:pointer;margin-left:-3px;}

    </style>

    <table width="100%" class="listext">

      <tr>

        <th>www</th>

        <th>daixiaorui</th>

        <th>com</th>

      </tr>

      <tr>

        <td>欢迎</td>

        <td>您的</td>

        <td>访问</td>

      </tr>

      <tr>

        <td>欢迎</td>

        <td>您的</td>

        <td>访问</td>

      </tr>

    </table>

     

    <script type="text/javascript" src="jquery.js"></script>

    <script type="text/javascript" src="jquery.resizableColumns.js"></script>

    <script type="text/javascript">

    $(function(){

    $("table").resizableColumns({});

    });

    </script>

     

    </body>

    </html>

    文章出自:http://www.daixiaorui.com/read/98.html 本站所有文章,除注明出处外皆为原创,转载请注明本文地址,版权所有。

  • 相关阅读:
    字符串数组和字符串的转换
    项目总结3
    解决几种中文乱码的问题
    ipms的sql语句
    ipms综合管理系统的总结2
    ipms综合管理系统的总结
    简答题汇总
    log4net根据日志类型写入到不同的文件中
    NUnit单元测试初试
    log4net
  • 原文地址:https://www.cnblogs.com/hgj123/p/3822155.html
Copyright © 2011-2022 走看看