现在我正在使用 jQuery 库,我遇到了以下问题:假设我有可排序的列表,如果项目
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js> </script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
<script>
$(document).ready(function(){
jQuery(".block").sortable({
axis: 'y'
});
});
</script>
</head>
<body>
<ul class="block" type="none">
<li>1</li>
<li>2</li>
<li>3</li>
</ul>
</body>
</html>
如此频繁的订单改变,我怎样才能为这个事件制作监听器,我的意思是,是否有任何订单更改事件的监听器或类似的东西。