$(".pagination.postpagination a").click(function(event) {
// Populate the hidden page_number field and submit the search form.
event.preventDefault();
var page = $(this).attr('data-page-number');
$("#id_page_number").val(page);
$("#customer-search-form").submit();
});
由于某些原因,除非客户搜索之前或之后有'console.log()',否则客户搜索不会触发。有任何想法吗?我不是JS程序员,而是在帮助我们团队中的某个人。我认为查找因某些原因而失败。谢谢!