我試過了一切,但仍然失敗!這段代碼有什麼問題?!?!我想獲得序列化的排序,這很簡單,但我已經看過,並發現片段..應用與我的代碼,它仍然無法正常工作。這根本沒有意義。我確實看過可能的錯誤(是的,有jQuery doc指定的set_number)...但仍然沒有任何效果。序列化排序不起作用
<html>
<body>
<script type='text/javascript' src='http://code.jquery.com/jquery-1.5.js'>
</script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/jquery-ui.js">
</script>
<script>
$(function() {
$("#sortable").sortable();
$("#sortable").disableSelection();
});
$("form").submit(function(){
$('#thedata').val($("#sortable").sortable("serialize"));
return false;
});
</script>
<h1>
Filters For Tables
</h1>
<h2>
Filters for Assets
</h2>
<form action="validate.php" method="post">
<input type='text' name='thedata' id='thedata' />
<ul id="sortable">
<li id="foo_0">ID</li>
<li id="foo_1">TIME LOG</li>
<li id="foo_2">DEVICE TYPE</li>
<li id="foo_3">CHASSIS TYPE</li>
<li id="foo_4">PARENT ID</li>
<li id="foo_5">PARENT</li>
</ul>
<input type="submit" name="submit" id="submit" value="Update" />
</form>
</body>
</html>
什麼?!?!無解決方案? – netrox
那麼究竟是不是工作 - http://jsfiddle.net/LD5dZ/? –
我也做了一個小提琴,爲我工作。你確定問題是這個代碼嗎? – Fewfre