码迷,mamicode.com
首页 > Windows程序 > 详细

按钮实现A标签新窗口打开(不用window.open)

时间:2014-10-22 12:21:38      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   ar   sp   div   on   

<button type="button" onclick="goBaidu()">click</button>
<script> 
    function goBaidu(){
        var a = document.createElement(a);
        var e = document.createEvent(MouseEvents);
        e.initEvent( click, true, true );
        a.href="http://www.baidu.com";
        a.target="_blank";
        a.dispatchEvent(e);
    }
</script>

 

按钮实现A标签新窗口打开(不用window.open)

标签:style   blog   http   color   io   ar   sp   div   on   

原文地址:http://www.cnblogs.com/huyajie/p/4042480.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!