0
私はこのajax関数を持っています。応答が成功すると、ajaxはリクエストを再度送信し、これがループします。必要ならば、私はどのように偽を返しますか?私のajax関数はループを続けます
$(function() {
$("#acts1").jstree({
"html_data" : {
"ajax" : {
"url" : "ajax.php",
"data" : function (n) {
return { id : n.attr ? n.attr("id") : 0 };
},
}
},
"plugins" : [ "themes", "html_data", "ui", "crrm","checkbox" ]
})
});
並び順を変えよう –