Jquery移动和鼠标悬停事件

时间:2012-03-28 09:40:25

标签: javascript jquery-mobile touch mouseover

我希望当我在标签上移动鼠标时我发出警告(“某事”),我尝试了很多功能但是警报只有在我点击标签时才有效,而不是当我在标签上移动它时! ! 我试过了:

$("#show").mouseover(function(){
   alert("something");
});

$("#show").mouseenter(function(){
   alert("something");
});

$("#show").live('vmouseover', function() {
   alert("something");
});

$("#show").hover(
  function () {
     alert("something");
});

1 个答案:

答案 0 :(得分:1)

您想要查看jQuery-Mobile提供的移动特定虚拟事件。他们的描述可以在这里找到:

http://jquerymobile.com/demos/1.1.0-rc.1/docs/api/events.html

特别是,您要求鼠标悬停:

$("#show").vmouseover(function(){
   alert("something");
});