在处理浏览器事件时,我已经开始为移动设备整合 Safari 的 touchEvents。我发现addEventListener
s 与条件叠加在一起。这个项目不能使用JQuery。
标准事件侦听器:
/* option 1 */
window.addEventListener('mousemove', this.mouseMoveHandler, false);
window.addEventListener('touchmove', this.mouseMoveHandler, false);
/* option 2, only enables the required event */
var isTouchEnabled = window.Touch || false;
window.addEventListener(isTouchEnabled ? 'touchmove' : 'mousemove', this.mouseMoveHandler, false);
JQuerybind
允许多个事件,如下所示:
$(window).bind('mousemove touchmove', function(e) {
//do something;
});
有没有办法像 JQuery 示例中那样组合两个事件侦听器?前任:
window.addEventListener('mousemove touchmove', this.mouseMoveHandler, false);
任何建议或提示表示赞赏!