我有一个字段表,其中包含使用 jQuery 的可排序插件的拖动排序句柄,该插件反过来通过 AJAX 触发 PHP 脚本,以在单击提交按钮后保存更改。但是,它实际上仅平均每隔一次有效。每隔一段时间,我就会连续两次成功运行,但这种情况非常罕见。
这是我的 HTML,动态生成:
<div class="foldertable">
<table class="data" id="sortable">
<tr class="odd" id="field_21">
<td class="handle"><a href="/admin/database/customfields/edit?cfid=21">Occupant Name</a></td>
</tr>
<tr class="even" id="field_22">
<td class="handle"><a href="/admin/database/customfields/edit?cfid=22">DBA</a></td>
</tr>
<tr class="odd" id="field_23">
<td class="handle"><a href="/admin/database/customfields/edit?cfid=23">Tenant Contact</a></td>
</tr>
</table>
<a href="" id="button" class="textbutton">Update Order</a>
</div>
还有我的 jQuery:
<script type="text/javascript">
var fixHelper = function(e, ui) {
ui.children().each(function() {
$(this).width($(this).width());
});
return ui;
};
$(document).ready(function(){
$("#sortable tbody").sortable({
helper: fixHelper,
opacity: 0.6,
update: function(){
$('#savemessage').html('<p>Click <em>update order</em> to save</p>');
$('#button').show();
}
});
$('#button').click(function(event){
var order = $("#sortable tbody").sortable("serialize");
order += "&crudtype=order";
$('#savemessage').html('<p>Saving changes...</p>');
$.post("/admin/database/customfields/crud",order,function(theResponse){
$('#savemessage').html(theResponse);
});
});
});
</script>
以及生成的 PHP 页面 /admin/database/customfields/crud
$fields = $_POST['field'];
$counter = 1;
foreach ($fields as $field) {
$params = array(array('value' => $counter, 'type' => 'i'), array('value' => $field, 'type' => 'i'));
db_query('UPDATE customfields SET sortorder = ? WHERE cfid = ?', $params, false);
$counter++;
}
print '<p>Changes saved</p>';
exit(); // Exit necessary for AJAX call
break; // End reorder
我基于这个网站http://www.simonbattersby.com/blog/drag-and-drop-with-jquery-ui/,它确实有效 - 只是不是每次都有效。谁能告诉我我做错了什么?提前致谢!