在标签中,使用ontouchend
来替代onclick
,同时在js中添加:
$(document).on('touchend','',function(){
});
//$(document).on('touchend'); // This couldn't work
即可!
不好用的办法如下:
$(document).on("click touchstart",function(){ // 这个会响应twice,且有延迟,about 1''34'''
var audio = document.getElementById('missing10');
audio.load();
});
网友评论