我有动态创建元素的内联onclick="myFunction('various parameters to pass to the function')",我想在假想的内联onswipe上调用。我想知道jQuery .on('swipe' ..是否可以像这样内联使用?做onswipe="myFunction()"或我怎么能实现这一点呢?谢谢
onclick="myFunction('various parameters to pass to the function')"
.on('swipe' ..
onswipe="myFunction()"
最接近的等效标准事件是touchmove,因此您可以使用ontouchmove="..."
touchmove
ontouchmove="..."