-1

我想知道一个类似的功能:

$(document).click(function () {});

但具有悬停功能。当我尝试使用:

$(document).hover(function () {});

它不起作用。任何机构都可以给我一些关于这个问题的想法。即我的主要目的是当用户将鼠标悬停在正文或文档上时,任何都会发出警报消息..

谢谢。

4

2 回答 2

0

你想要这样的东西吗?

 $(document).ready(function(){

  $('#YourElementId').hover(function(){
     alert('mouse hovered'); 
  });
});
于 2013-09-02T10:41:01.340 回答
0

注意在你的页面中包含jQuery 。然后,你可以做

$('.someclass').on('hover', function(){ alert("something"); });

或者

  $('.someclass').hover(function(){ alert("something"); });

尽量避免 tobind hover除非document你必须这样delegate做,否则event你应该这样做

$(document).on('hover', '.someclass', function() {});

绑定hoverdocument可能会给您的用户带来糟糕的体验,特别是在您显示警报时,除非您一如既往地注意必须显示哪个元素。

于 2013-09-02T10:42:58.353 回答