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