不,没有
method属性,其
type:
$.ajax({ 'url': 'handler/test_handler.php', 'type': 'POST', // type not method 'data': {data: JSON.stringify(results)}, 'dataType': 'html', 'success': function (data) { console.log(data); }});
method是
<form>标记中使用的属性。
样本输出
旁注:我认为
serializeArray()更合适:
results.push($(this).serializeArray());
另一个例子
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)