部分 html 被替换为 ajax 调用的结果。在测试期间,我使那个 ajax 调用与被替换的完全一样。问题是我应用于旧 html 的 JQuery UI 和“onClick”内容都没有应用于新的 html。我尝试再次调用应用它的功能,但它不起作用。奇怪的是,如果我直接将它输入谷歌浏览器(new-ajax-html 受 JQuery 命令影响),它确实有效。
这是我的代码,其中包括开始时 html 的原始设置(有效)和第二次设置(在所有需要的元素都被实例化之后):
function set_up() { // <-- if I call this function in the consul, it works.
$('.delete-button').click(function() {
var confirm = window.confirm("Are you sure you want to delete? After you save, this file will not be recoverable.")
if (confirm){
$(this).parent('.deletable-group').remove()
}
});
$('.field-default[data-multi="True"]').makeMulti();
$("input.field-input-date").datepicker();
alert("HERE!") //Is reached both times I call the function. So the code above is executing.
}
var options = {
target: '.server-response-box',
success: function() { //<--- Gets called when the ajax call goes through.
$('.needs-update').each(function( index ) {
url = "/field/1/" + $('.edit-wrapper').attr('data-entry-ID') + "/" + $(this).attr('data-field-id');
old_this = this
$.get(url,function(data){
$(old_this).replaceWith(data);
});
});
set_up(); // Tries to set everything up again.
},
beforeSubmit: function(arr, $form, options) {
}
};
$('#form').ajaxForm(options);
set_up(); //<-- sets it all up the first time.