目标_blank未在新标签/窗口中打开

时间:2017-03-08 04:29:14

标签: javascript ionic-framework ionic2

我在离子项目中使用以下代码打开新的系统浏览器并发布值。出于某种原因,新窗户无法打开。

我没有遇到任何错误。该链接确实打开,但在自我浏览器中。我希望它在android系统浏览器中打开。

var mapForm = document.createElement("form");
mapForm.target = "_blank";    
mapForm.method = "POST";
mapForm.action = "http://www.example.com/api/form.php";

// Create an input
var firstname = document.createElement("input");
var lastname = document.createElement("input");
var address = document.createElement("input");
var email = document.createElement("input");

firstname.type = "text"; firstname.name = "firstname"; firstname.value = "John";
lastname.type = "text"; lastname.name = "lastname"; lastname.value = "Doe";
email.type = "text"; email.name = "email"; email.value = "user@example.com";

// Add the input to the form
mapForm.appendChild( firstname );
mapForm.appendChild( lastname );
mapForm.appendChild( email );

// Add the form to dom
document.body.appendChild(mapForm);

// Just submit
mapForm.submit();

1 个答案:

答案 0 :(得分:1)

使用_system即可。

以下是一个例子:

window.open(url,'_system','location=yes'),!1;