最有效的方式来观看鼠标移动,点击,只在上课时触摸

时间:2016-01-12 11:48:35

标签: jquery

当将特定类添加到body标记时,最有效的方法是观察mousemoveclicktouch个事件,。< / p>

$(document).on('click mousemove touch', function() {
    console.log('event');
});

1 个答案:

答案 0 :(得分:2)

您可以使用.hasClass

$(document).on('click mousemove touch', function() {
  if ($("body").hasClass("particular-class"))
    console.log('event');
});

或者,您可以这样做:

$(document).on('click mousemove touch', 'body.particular-class', function() {
    console.log('event');
});