如何在新标签页中打开ajax?

问题描述 投票:-2回答:1

如果我理解正确,那么以下将在背景中静静地将formData发送到test.php

var xhr = new XMLHttpRequest();
xhr.open('POST', 'test.php');
xhr.send(formData);

但是,我希望具有相同的行为,就好像提交带有target="_blank"属性的表单一样。因此,在新选项卡中打开带有发布数据的test.php。

javascript html ajax
1个回答
0
投票

您可以使用jQuery serialize序列化表单,然后使用curl the data to your PHP script。确保通过禁用按钮默认功能see this post.来禁用发布表单。

© www.soinside.com 2019 - 2024. All rights reserved.