开心网络科技交流论坛 - 5秒后弹窗代码 - Power By Team Board 标题: 5秒后弹窗代码     [打印本页]
来自: 开心网络科技交流论坛 - 『技术交流』
链接: http://www.kx568.cn/bbs//Thread.asp?tid=44

作者: admin     时间: 2010/12/4 14:26:44     标题: 5秒后弹窗代码

  1. <script language='javascript'>
  2. var sVarPopWin=true;
  3. function PlayJsAdPopWin()
  4. {
  5. if( sVarPopWin )
  6. {
  7. popwin=window.open("您需要弹的网站地址","","height=300, width=360");
  8. }
  9. }
  10. setTimeout("PlayJsAdPopWin()", 16000 );
  11. </script>
  12.  
  13. 上面的代码中有一句
  14.  
  15. popwin=window.open("您需要弹的网站地址","","height=300, width=360");
  16.  
  17. 后面的 height=300, width=360 是您需要弹出的页面大小。
  18.  
  19. 如果您想直接弹出网页可以用下面的代码。
  20.  
  21. <script language='javascript'>
  22. var sVarPopWin=true;
  23. function PlayJsAdPopWin()
  24. {
  25. if( sVarPopWin )
  26. {
  27. popwin=window.open("您需要弹的网站地址","");
  28. }
  29. }
  30. setTimeout("PlayJsAdPopWin()", 16000 );
  31. </script>


    过IE6.7.傲游 世界之窗,其它的未测试


Powered by Team Board