使用onclick的href无法在Safari中使用

时间:2013-10-31 19:12:38

标签: javascript html hyperlink safari

为什么此链接无法在Safari上运行? 当我点击Click here时,它应该会打开http://othersite.com以及http://mysite.com/profile。问题是它只会打开http://mysite.com/profile并且不会为http://othersite.com打开新标签页。这个适用于Chrome和firefox ..我可以在Safari上使用吗?

HTML

<a target="_blank" onclick="redirect()" href="http://othersite.com">Click here</a>

的javascript

function redirect(){
    location.href = 'http://mysite.com/profile';
}

1 个答案:

答案 0 :(得分:-2)

要在新标签页中打开链接,您必须将目标属性设置为_tab_blank会根据用户的设置打开新标签页或新窗口。