jquery實現表格行拖動排序
本文實例為大傢分享瞭jquery實現表格行拖動排序的具體代碼,供大傢參考,具體內容如下
引入JS
<script src="jquery.min.js"></script> <script src="jquery-ui.min.js"></script>
html代碼
<!doctype html> <html> <head> <meta charset="UTF-8"> <title>sortDemo</title> <script src="jquery.min.js"></script> <script src="jquery-ui.min.js"></script> </head> <body> <table id="dataTable" border="1" cellpadding="6" cellspacing="0" align="center" style="margin-top: 10px;border-color: #dddddd;border-style: solid;"> <thead> <tr> <th>序號</th> <th>姓名</th> <th>年齡</th> </tr> </thead> <tbody> <tr> <td>1</td> <td>張三</td> <td>18</td> </tr> <tr> <td>2</td> <td>李四</td> <td>25</td> </tr> <tr> <td>3</td> <td>王五</td> <td>16</td> </tr> <tr> <td>4</td> <td>趙六</td> <td>30</td> </tr> <tr> <td>5</td> <td>田七</td> <td>20</td> </tr> </tbody> </table> <script type="text/javascript"> $(function() { var fixHelper = function(e, ui) { ui.children().each(function() { $(this).width($(this).width()); }); return ui; }; $("#dataTable tbody").sortable({ cursor: "move", helper: fixHelper, axis:"y", start:function(e, ui){ ui.helper.css({"background":"#fff"}); return ui; } }); $( "#sortable" ).disableSelection(); }); </script> </body> </html>
效果
以上就是本文的全部內容,希望對大傢的學習有所幫助,也希望大傢多多支持WalkonNet。