jquery动态创建表单提交时报错:
Form submission canceled because the form is not connected
这应该是Chrome浏览器的bug,chrome56版本以后修复form提交的bug。
修改为
form = $('<form></form>')
创建好后,要
$(document.body).append(form);
然后form.submit();
小了白了兔白了又了白
jquery动态创建表单提交时报错:
Form submission canceled because the form is not connected
这应该是Chrome浏览器的bug,chrome56版本以后修复form提交的bug。
修改为
form = $('<form></form>')
创建好后,要
$(document.body).append(form);
然后form.submit();
0条评论
点击登录参与评论