这段代码工作正常..
<a href="http://google.com/" onmouseover="window.location=this.href">Text</a>
但我需要在新标签页中打开链接
这段代码工作正常..
<a href="http://google.com/" onmouseover="window.location=this.href">Text</a>
但我需要在新标签页中打开链接
而不是使用window.location
,您可以使用:
window.open('http://www.google.com', '_blank');
在新窗口中打开。
你可以使用它。但是新窗口
<a href="#" onmouseover="javascript:window.open('http://google.com')">Text</a>
或使用 javascript。这个新标签
<a href="#" onmouseover="myFunction()">Text</a>
<script>
function myFunction() {
var Open = window.open("http://www.kangsigit.com", "_blank");
}
</script>