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.
我有一个带有标准的表单,它在添加 PagerFanta 分页器的同一视图中返回结果列表。要转到下一页或上一页,我需要发送相同的表单数据(标准)。
更好的方法是什么?
谢谢你,我很抱歉我的英语。
我已经用这种方法解决了:
当我渲染树枝的视图时,我总是用上一篇文章的数据填写表格......
有了这个 javascript 代码,我得到了预期的结果
$('.pagination ul > li > a').click(function(event) { event.preventDefault(); $('#form_name').attr('action', this.href); $('#form_name').submit(); });