准备用pjax做submit提交,但是pjax不支持html5的formaction<form action="REPLACEBYSCRIPT"> ... <button type="submit" formaction="search" /></form>$(document).on('submit', 'form', function(event) { options.url = ??? //这里我怎么样才能拿到formaction的值 $.pjax.submit(event, '#pjax-container',options);});别人提的解决方案,表示不行呀。链接
1 回答
明月笑刀无情
TA贡献1828条经验 获得超4个赞
options.url = $("button[type=submit]").attr("formaction");
// 仿照github上
options.url = $("button[type=submit][formaction]:focus", $(this)).attr("formaction");
添加回答
举报
0/150
提交
取消