jQuery拖動調整表格列寬度-resizableColumns
阿新 • • 發佈:2018-11-14
分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!http://blog.csdn.net/jiangjunshow
也歡迎大家轉載本篇文章。分享知識,造福人民,實現我們中華民族偉大復興!
實現滑鼠可拖動調整表格列寬度 如圖:
一、引入檔案:
<script src="/js/jquery-1.8.0.min.js" type="text/javascript" ></script><script src="/js/store.js" type="text/javascript"></script><script src="/js/jquery.resizableColumns.js" type="text/javascript"></script>
二、TABLE
<table id="myTable" border="1"> <thead> <tr> <th data-resizable-column-id="a"><input type="checkbox" /></th> <th data-resizable-column-id="b">欄目型別 </th> <th data-resizable-column-id="c">活動名稱 </th> <th data-resizable-column-id="d">狀態 </th > <th data-resizable-column-id="e">操作選項</th> </tr> </thead> <tbody> <tr> <td><input type="checkbox" /></td> <td>青春日記</td> <td>2014年度青春日記徵文 </td> <td>提交 </td> <td>稽核</td> </tr> <tr> <td><input type="checkbox" /></td> <td>我和孩子的成長故事</td> <td>成長故事 </td> <td>通過 </td> <td>稽核</td> </tr> </tbody> </table>
以上html只是作為Demo 並不是我專案中所實際使用的,並且在測試的時候
也未能實現。鬱悶...
三、實現表格可拖動
<script type="text/javascript"> $(function(){ $("#myTable").resizableColumns({ store: window.store }); })</script>
在專案使用過程中 發現無需引入store.js <th>也無需data-resizable-column-id屬性
並且$("#myTable").resizableColumns();也可實現功能
所需檔案下載地址:http://download.csdn.net/detail/itmyhome/7390263
分別解壓兩個檔案
jquery.resizableColumns.js在\jquery-resizable-columns-gh-pages\dist路徑下
store.js在store.js-master路徑下
------------------------分割線----------------------------
如果未實現效果,可使用 colResizable 外掛
參考: http://blog.itmyhome.com/2016/05/jquery-colresizable
2016-05-05