我有图片滑块代码,它不适用于Android平板电脑。但在添加以下行之后,它也开始在android上工作。
$('#myImageFlow ').on("click touchstart",".sliderImage",touchStart());
function touchStart(event){
};
但这是错误::
Uncaught TypeError: Object .sliderImage has no method 'apply',
touchstart()我不需要,但如果我给出假,那么我的滑块不适用于android。
答案 0 :(得分:4)
您需要传递函数引用作为回调,而不是touchStart
方法返回的值。
$('#myImageFlow ').on("click touchstart", ".sliderImage", touchStart);
function touchStart(event){
};