注册一个事件的写法
banner.addEventListener('touchmove', function(e));
像这种匿名事件貌似无法移除,而我想在以后移除该事件,所以:
banner.addEventListener('touchmove', moveEvent(e,startX, index, banner.offsetWidth));
但是e(touchEvent)和一系列的参数无法像这样传递,请问这种情况如何移除事件?
banner.addEventListener('touchmove', moveEvent)
functon moveEvent(e) {
e.startX
}