我已经制作了这个jQuery脚本>
$(document).ready(function() {
$(function() {
$("#topmenu ul").sortable({ opacity: 0.6, cursor: 'move', update: function() {
var order = $(this).sortable("serialize") + '&action=updateRecordsListings';
$.post("?id=", order, function(theResponse){
$("#contentRight").html(theResponse);
});
}
});
});
});
但它在Internet Explorer中没有做任何事情。我不能按照意图拖动菜单项。该脚本在Goole Chrome中完全正常运行。 我一直在看剧本,我似乎无法找到问题。
提前致谢。