var frm = document.createElement("form");
document.body.appendChild(frm);
frm.method 
= "POST";
frm.target 
= "_blank";

function getURL(url){
  frm.action 
= url;
  frm.submit();
}

 

 

在as里调用 getURL

相关文章:

  • 2021-09-13
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-03-05
  • 2022-12-23
  • 2021-10-26
猜你喜欢
  • 2022-12-23
  • 2022-01-06
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-14
  • 2021-07-09
相关资源
相似解决方案