HTML table鼠标拖拽排序功能
来源:爱站网时间:2020-03-08编辑:网友分享
table在HTML中是不可或缺的,我们在很多项目中都需要使用它,今天爱站技术频道小编给大家带来了HTML table鼠标拖拽排序功能,有需要的朋友,可以参考下文进行学习。
table在HTML中是不可或缺的,我们在很多项目中都需要使用它,今天爱站技术频道小编给大家带来了HTML table鼠标拖拽排序功能,有需要的朋友,可以参考下文进行学习。
效果图:
1.引入文件
<script src="js/jquery-1.10.1.min.js"></script> <link rel="stylesheet" href="Public/css/jquery-ui.min.css"> <script src="js/jquery-ui.min.js"></script>
2.给元素附上sortable类
<tbody class="sortable"> <tr></tr> <tr></tr> </tbody>
3.开启并配置
$(function() { $(".sortable").sortable({ cursor: "move", items: "tr", //只是tr可以拖动 opacity: 0.6, //拖动时,透明度为0.6 revert: true, //释放时,增加动画 update: function(event, ui) { //更新排序之后 var categoryids = $(this).sortable("toArray"); var $this = $(this); } }); $(".sortable").disableSelection(); });
以上就是爱站技术频道小编给大家整理的HTML table鼠标拖拽排序功能,然而我们要通过不断的学习,才能变得更加强大哦。
上一篇:html页面跳转传递参数问题