我有一个带有 JSON.stringify 的 tableDnD 拖放:
jQuery(document).ready(function() {
jQuery("#Table").tableDnD({
onDragClass: "danger",
onDrop: function(table, row) {
jQuery.ajax({
url: "ajax.php",
type: "post",
data: {
'rows' : JSON.stringify(table.tBodies[0].rows)
},
dataType: 'html',
success: function(reponse) {
if(reponse) {
//alert('Success');
} else {
alert('Erreur');
}
}
});
}
});
});
我有这个错误信息:
未捕获的 TypeError:将循环结构转换为 JSON
我只有在 Chrome 上才有这个问题。