如何在鼠标悬停时点击href链接?
我想在鼠标悬停时点击我的链接
我必须做些什么才能使我的链接在鼠标悬停时被点击
这是我的代码:
<a href="www.example.com">link</a>
如何在鼠标悬停时点击href链接?
我想在鼠标悬停时点击我的链接
我必须做些什么才能使我的链接在鼠标悬停时被点击
这是我的代码:
<a href="www.example.com">link</a>
尝试类似:
<a onmouseover="this.click();" href="...">link</a>
您可以使用 jquery 来实现此操作
$('a').mouseover(function(){
$(this).click();
});
Jquery 或 Style 属性
<a href="" onmouseover="$(this).click()" >Click Me</a>
<a href="" onmouseover="this.style.cursor='pointer';">Click Me</a>