标签:.ajax create res san get 方法 cli 如何 click
1 a标签
function openwin(url) {
var a = document.createElement("a");
a.setAttribute("href", url);
a.setAttribute("target", "_blank");
a.setAttribute("id", "camnpr");
document.body.appendChild(a);
a.click();
}
2 window.open
window.open('https://sandbox.ebanx.com/print/?hash=59ad5dd18a6d5ba0e24327c2ba92a730115a80bd58b3baa5', '_blank')
有3种情况会需要打开新tab页,
function click() {
var newWin = window.open('loadingurl');
$.ajax({
url: url,
type: "post",
data: payParams,
dataType: 'json',
success: function (response) {
newWin.location = response.data.url
}
})
}
就是在点击的时候 先打开一个默认的loading页面 然后在等url回来后在赋值给location
以上
标签:.ajax create res san get 方法 cli 如何 click
原文地址:https://www.cnblogs.com/WhiteHorseIsNotHorse/p/9076759.html