自动在新窗口中单击MouseOver

时间:2013-07-05 02:33:02

标签: javascript html

此代码工作正常..

<a href="http://google.com/" onmouseover="window.location=this.href">Text</a>

但我需要在新标签页中打开链接

2 个答案:

答案 0 :(得分:1)

您可以使用:

,而不是使用window.location
window.open('http://www.google.com', '_blank');

在新窗口中打开。

答案 1 :(得分:0)

你可以使用它。但新窗口

<a href="#" onmouseover="javascript:window.open('http://google.com')">Text</a>

或者使用javascript。这新TAB

<a href="#" onmouseover="myFunction()">Text</a>
<script>
function myFunction() {
    var Open = window.open("http://www.kangsigit.com", "_blank");
}
</script>