liqiang665

  博客园 :: 首页 :: 联系 :: 订阅 订阅 :: 管理
  27 Posts :: 0 Stories :: 14 Comments :: 3 Trackbacks

公告

2008年1月14日 #

关于window.open被IE屏蔽的问题

测试如下:
1.打开一个新的窗口,这是一个默认的,即为target="_blank"
<html>
<head>
<title>test</title>
</head>
<body onload="window.open('http://www.sz3w.cn')">
test
</body>
</thml>
这个IE提示阻止了一个弹出窗口...

2.跳转到别人页面,但不新增加窗口,target="self"(本身),target="_top"(嵌套页的当前整页),这样就不会屏蔽了
<html>
<head>
<title>test</title>
</head>
<body onload="window.open('http://www.sz3w.cn',"_self")">
test
</body>
</thml>

posted @ 2008-01-14 16:41 青铜时代 阅读(1169) 评论(0) 编辑