弹出窗口正常打开但更改主窗口URL

时间:2016-02-12 08:00:26

标签: javascript html

这是我使用的代码:

<a href="javascript:window.open(' http://eepurl.com/bQhLz1', 
   'Health Challenge: Week One', 'width=600,height=550 ');" ></a>

在弹出窗口打开后,不确定为什么我的主页网址会重定向。我该怎么做才能解决这个问题?

演示:http://www.kaytivstheworld.com/2016/01/health-challenge-week-one.html

1 个答案:

答案 0 :(得分:0)

您应该通过onclick事件和return false打开窗口以防止默认操作

<a href="#" onclick="window.open('http://eepurl.com/bQhLz1',
'Health Challenge: Week One', 'width=600,height=550'); return false;"></a>