Maxthon强制弹出IE窗口

博客给出一段JavaScript代码,通过对当前页面URL的匹配和处理,实现不同的弹窗逻辑。若URL匹配特定规则,会根据规则计算轮次并打开新窗口;若不匹配,则以模态对话框形式打开新页面。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

修改代码中的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>
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值