我试图在 ajax 完成事件中执行一些代码,但它不适用于页面加载事件,但它在 onchange 链接事件中完美运行
$(document).ready(function() {
$.ajax({
beforeSend: function() {
// Handle the beforeSend event
},
complete: function() {
// Handle the complete event
$("#customfields_1 :input").filter(function() {
return $.trim(this.value).length === 0;
}).closest("td").hide();
}
// ......
});
});