我有一个发布序列化列表的简短脚本。它在 Firefox 中运行,但不是 chrome 或 explorer,它们都在传递一个空帖子:
$_POST['list'] == ''
这是下面的代码。
<script>
$(function() {
$( "#sortable" ).sortable({
update: function(event, ui){
var postdata = $(this).sortable('serialize');
console.log(postdata);
$.post('packages.php', {list: postdata}, function(o) {
console.log(o);
}, 'json');
}
});
});
</script>
header and body content
<a href='somelink here'>
<div id='item_1'>
content....
</div>
</a>
<a href='somelink here'>
<div id='item_2'>
content....
</div>
</a>
<a href='somelink here'>
<div id='item_3'>
content....
</div>
</a>
html valid end of page
谁能告诉我我做错了什么?提前致谢。