我正在关注本教程https://www.youtube.com/watch?v=3mOs0VY_sIw
$(function() {
$( "#navsort" ).sortable({
update: function(event, ui) {
var postData = $(this).sortable('serialize');
console.log(postData);
$.post('save.php'. {list: postData}, function(o) { // i stuck here giving error
console.log(o);
}, 'json');
}
});
});
我坚持$.post('save.php'. {list: postData}, function(o)
并提出错误SyntaxError: missing name after . operator
请帮我解决这个问题..我是jquery的新手
答案 0 :(得分:2)
.
替换为save.php
,
$.post('save.php', {list: postData}, function(o) {
console.log(o);
}, 'json');
答案 1 :(得分:1)
您需要在“save.php”之后放置一个“,”而不是“。”。
$.post('save.php', {list: postData}, function(o) { // i stuck here giving error
console.log(o);
}, 'json');