MVC+Bootstrap+Drapper使用PagedList.Mvc支持多查询条件分(2)

$(function () { $(".pagination > li > a").click(function () { event.preventDefault(); var index = $(this).html(); if (index == '»') { index = parseInt($(".pagination > li[class=active] > a").html()) + 1; } if (index == '«') { index = parseInt($(".pagination > li[class=active] > a").html()) - 1; } if (index < 1) return; $("input[name=page]").val(index); $("#OrderForm").submit(); }); });

通过这段JS,直接把原来分页的a标签作废了,获取他的page值放到了form中,然后直接触发form的submit(),这样就满足了我们一般的查询业务需求。

以上所述是小编给大家介绍的MVC+Bootstrap+Drapper使用PagedList.Mvc支持多查询条件分页,希望对大家有所帮助,如果大家有任何疑问欢迎给我们留言,小编会及时回复大家的!

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wdpdfd.html