我有以下代码负责在函数 load() 中提交表单。
$(document).ready(function(){
$("#productfilter").validate({
submitHandler: function(form) {
$.post ('listproresult_core.php', $("#productfilter").serialize(), function(data) {
$('#contentincore').html(data);
$('#contentincore a').click(function(e) {
$("#contentincore").on("click", "a:not(.minlink)" && "a:not(.prolink)", function ( e ) {
$("#contentincore").load($(this).attr("href"));
e.preventDefault();
});
});
});
}
});
});
...但是,我想要的是响应表单(在加载时)向我展示下一个 loader .gif
。
$("#contentincore").html("<img src='loader.gif'class='clock' border='0' />");