jQuery:触发(mousemove或“keypressed”)

时间:2012-11-19 07:42:10

标签: jquery events keypress mousemove onkeypress

我已经阅读了一些关于触发鼠标移动任何按键的答案,但我仍然不确定,将两个事件联合起来的最佳方式是什么 - 鼠标移动并按任意键二合一。

修改

的最佳方法是什么
$(document).mousemove(function ()
{
  alert('The mouse was touched');
}

$(document).<???>(function ()
{
  alert('The mouse was touched or any key pressed');
}

2 个答案:

答案 0 :(得分:2)

你可以使用bind

$(document).bind( "mousemove keypress", function () {
 code
});

答案 1 :(得分:1)

有3个功能可能是最好的方法。

$(document).mousemove(movePressed()); //calls function
$(document).keypress(movePressed()); //calls same function

function movePressed(){//do whatever you want when mousemove or keypressed}