<script type="text/javascript">
<!--

// 创建form表单
function ForceWindow()
{
  
this.r = document.documentElement;
  
this.f = document.createElement("form");
  
this.f.target = "_blank";
  
this.f.method = "post";
  
this.r.insertBefore(this.f, this.r.childNodes[0]);
}


// 指定form路径并提交
ForceWindow.prototype.open = function (sUrl)
{
    
this.f.action = sUrl;
    
this.f.submit();
}

// 使用方法
var myWindow = new ForceWindow();
myWindow.open(crazy_link_url);
 
//-->
</script>

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-25
  • 2021-07-30
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-08
  • 2022-03-08
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案