虽然jQuery sortable widget
在大多数情况下工作正常,但ordered list
在numbering gets botched up when we drag an element
. 下面是一个示例程序来说明这一点:
<!DOCTYPE html>
<html>
<head>
<script src="jquery-1.6.2.min.js"></script>
<script src="jquery-ui-1.8.16.custom.min.js"></script>
<script>
$(document).ready(function () {
$('ol').sortable();
});
</script>
</head>
<body>
<ol>
<li>
<label for="name">Name</label>
<input type="text" id="name" />
</li>
<li>
<label for="class">Class</label>
<input type="text" id="class" />
</li>
</ol>
</body>
</html>
拖动前:
在拖动过程中:
拖动完成后,排序将恢复。此错误之前已注意到但未修复。有没有人找到治疗这个的?
这是它的小提琴