我有一个新手语法问题,这是我的代码:
$('.selector').on({
mouseenter: function() {
// ...
},
mouseleave: function() {
// ...
}
});
现在,如果我想将 mouseenter 和 touchstart 事件绑定到同一个函数怎么办?我知道我可以这样做:
$('.selector').on('mouseenter touchstart', function(){
// ...
});
但我喜欢我的第一个例子的外观。(我的想法是否正确,只是我的示例中的语法不同?)还有谁知道我可以在哪里查找这些东西?jQuery API 只展示了一种写东西的方式。