当前位置导航:炫浪网>>网络学院>>网页制作>>JavaScript教程

强制弹出窗口代码-跨拦截

 <html>  
  <head>  
  <meta   http-equiv="Content-Type"   content="text/html;   charset=gb2312">  
  <title>PHP100中文网</title>  
  <script   language="javascript">  
  <!--   
  # from PHP100.com
  # 支持 反toolbar拦截,Firefox , IE拦截
  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]);  
  }    
  ForceWindow.prototype.pop   =   function   (sUrl)  
  {  
      this.f.action   =   sUrl;  
      this.f.submit();  
  }  
  window.force   =   new   ForceWindow();  
   
  </script>  
  </head>  
   
  <body   onLoad="window.force.pop('php100.htm')">  
   
  </body>  
  </html>  

相关内容
赞助商链接