我正在使用Touchswipe根据向右滑动触发事件并向左滑动。经过大量测试后,我发现touchswipe无法在Android股票浏览器上运行,因为touchswipe不会在股票浏览器上触发刷卡事件。有没有解决这个问题?
要触发的代码:
$(function() {
//Enable swiping...
$("#content").swipe( {
//Generic swipe handler for all directions
swipe:function(event, direction, distance, duration, fingerCount) {
if(direction == "left"){
}else if(direction == "right"){
}else if(direction == "down"){
// event.preventDefault()
}
},
threshold:0
});
});
答案 0 :(得分:0)
好吧,经过很多问题我发现android STOCK浏览器上的滑动事件无法使用外部Js文件中的代码触发,但如果放在同一个html文件上则有效。很奇怪,但有效。
答案 1 :(得分:0)
您是否尝试过使用jQuery mobile来支持滑动功能。开发人员API被赋予here。
此处的不同之处在于,我们可以致电$(document).ready(function() ...)
$(document).bind('pageinit')
。