jquery列表拖动排列(由项目提取相当好用)(2)


<!DOCTYPE html>
<html>
<head>
<title>jQuery UI sortable()实现拖动排序</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script src="https://tool.phpddt.com/resources/js/jquery-1.7.2.min.js"></script>
<script src="https://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
</head>
<body>
<script>
$(function() {
$( ".sortable" ).sortable({
cursor: "move",
items :"li", //只是li可以拖动
opacity: 0.6, //拖动时,透明度为0.6
revert: true, //释放时,增加动画
update : function(event, ui){ //更新排序之后
alert($(this).sortable("toArray"));
}
});
});
</script>
<ul>
<li>第1项</li>
<li >第2项</li>
<li>第3项</li>
</ul>
</body>
</html>


源码下载

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wgpgsf.html