你如何使用 'POST'
中的 target="_blank"
模拟 Form 的 XMLHttpRequest
Action ? (即发布数据并在新选项卡中打开目标页面)
最佳答案
gBrowser
提供了开箱即用的功能。
var dataStream = Cc["@mozilla.org/io/string-input-stream;1"].createInstance(Ci.nsIStringInputStream);
dataStream.data = "foo=bar&alpha=beta"; // make sure the values are properly encoded with encodeURIComponent
var postStream = Cc["@mozilla.org/network/mime-input-stream;1"].createInstance(Ci.nsIMIMEInputStream);
postStream.addHeader("Content-Type", "application/x-www-form-urlencoded");
postStream.addContentLength = true;
postStream.setData(dataStream);
gBrowser.loadOneTab("http://www.example.com/", {inBackground: false, postData: postStream});
关于javascript - XMLHttpRequest POST 并在新窗口/选项卡中打开目标页面,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24776180/