我遇到了jQuery Mobile和Firefox的问题。 问题是Firefox中的滑动事件不起作用。这是我正在使用的代码(你在图像上滑动):
$('#slider_Backgrounds').on("swipeleft",sliderControlRight);
我希望有人能帮助我让这段代码也能在FireFox中运行。
先谢谢
答案 0 :(得分:0)
希望fiddle帮助你,
HTML:
<div class="slider_Backgrounds">
</div>
<div class="slider_Backgrounds">
</div>
<div class="slider_Backgrounds">
</div>
<div class="slider_Backgrounds">
</div>
JQuery:
$(document).on("swipeleft",'.slider_Backgrounds',sliderControlRight);
function sliderControlRight(){
$(this).hide();
alert(1232);
}
检查api reference以获取更多选项并更好地使用。