我正在使用 .on() 将触摸事件与元素绑定,但我收到错误 e 未定义。怎么办?我尝试在括号内写事件 e,但它不起作用。
$("#myImageFlow ").on('click touchstart',".sliderImage",abc);
//custom function handler for event
function abc(){
e.stopPropagation(); e.preventDefault();
console.log('has no method ...................'+e);
如何定义事件变量,因为我没有用()调用函数?