火狐中打开新的标签页出现白屏

火狐中打开新的标签页出现白屏

有问题的代码(html页面):

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
    <script type="text/javascript" src="jquery-1.11.1.js"></script>
    <script type="text/javascript">
       $(function(){
           if($("#intro").length > 0){
               $('#intro').click(function(){
                   window.open("http://hw1287789687.iteye.com/");
               });
           }
       })
    </script>
</head>
<body>
<a id="intro" href="javascript:void(0)" target="_blank" >功能介绍</a>
</body>
</html>

 IE和火狐中出现多一个白屏的标签页

方式一:把target 改为"
_self"

<a id="intro" href="javascript:void(0)" target="_self">功能介绍</a>
  方式二:

删除hreftarget属性

 

 方式三:

调用e.preventDefault(); 来阻止默认行为

为什么不使用href直接指定要跳转的地址:因为在遨游中会白屏

 

参考:http://hw1287789687.iteye.com/blog/2213879

猜你喜欢

转载自hw1287789687.iteye.com/blog/2310000