Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有一个 jqGrid 方法可以跳到行的下一页/上一页。我试图用 jQuery 以编程方式单击按钮本身,但还没有成功
转到第 123 页:
grid = $("#grid"); grid.setGridParam({ page: 123 }); grid.trigger("reloadGrid");
注意:如果您转到没有数据的页面,网格的行为会很奇怪。
您可以使用 $("#next").click();触发下一页。
$("#next").click();