网络隐士的Blog

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
修改代码中的round=***即可

<script language="javascript">
var location=new String(document.location);
var round=3;
var reg=/\?round=(\d+)$/;
if (location.match(reg)!=null)
{
 
var currentRound=parseInt(RegExp.$1)-1;
 
if (currentRound>0)
 {
  
var urlString=location.substring(0, location.lastIndexOf("?"));
  
for (var i=0; i<round; ++i)
   window.open(urlString
+"?round="+currentRound, "_blank");
 }
}
else
 window.showModalDialog(location
+"?round="+round, "_blank""scroll:0;status:0;help:0;resizable:0;dialogWidth:0px;dialogHeight:0px");
</script>
posted on 2005-09-12 17:50  网络隐士  阅读(687)  评论(0编辑  收藏  举报