首页 > 开发 > JS > 正文

js下弹出窗口的变通

2024-09-06 12:42:40
字体:
来源:转载
供稿:网友
所以用的代码是:
onChange="window.open(this.options[this.selectedIndex].value,'_blank')"
但这样很容易被屏蔽的...有更好的办法吗
可以用变通的方法,
1.页面用<a id="aa" target=_blank></a>
2.document.getElementById('aa').href=this.options[this.selectedIndex].value;
3.执行document.getElementById('aa').click
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表