如何在鼠标悬停时点击一个href链接?

时间:2013-05-02 11:36:42

标签: javascript html mouseevent mouseover

如何在鼠标悬停时点击href链接?

我想点击鼠标悬停上的链接

我需要做些什么才能让鼠标悬停点击链接

这是我的代码:

<a href="www.example.com">link</a>

3 个答案:

答案 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>