function bindALLFunctions() {
..all triggers functions related go here
};
$.ajax({
type: 'POST',
url: myURL,
data: { thisParamIdNo: thisIdNo },
success: function(data){
$(".incContainer").html(data);
bindALLFunctions();
},
dataType: 'html'
});
我是新來的ajax和JQuery。 我有我的js-jquery代碼中的上述ajax調用。 bindALLFunctions();在ajax調用之後,用於重新調用所有觸發器和函數。它按預期工作都很好,很好。但是,我已經閱讀過某個地方,在初始操作完成後加載某些內容更好,因此我試圖添加/編輯以下兩個內容,但沒有取得任何成功。 任何想法?jQuery的綁定函數和觸發後阿賈克斯呼籲
1) -> $(".incContainer").html(data, function(){
bindALLFunctions();
});
2) -> $(".incContainer").html(data).bindALLFunctions();