如果我理解正确,那么以下内容会在后台静默发送formData
到test.php
。
var xhr = new XMLHttpRequest();
xhr.open('POST', 'test.php');
xhr.send(formData);
但是,我希望具有相同的行为,就像提交具有target="_blank"
属性的表单一样。因此,在新标签页中打开带有帖子数据的test.php。
答案 0 :(得分:0)
您可以使用jQuery serialize序列化表单,然后使用curl the data to your PHP script。确保通过禁用按钮默认功能see this post.来禁用发布表单。