滑动事件在Firefox上不起作用

时间:2016-01-28 17:05:23

标签: jquery html firefox

我遇到了jQuery Mobile和Firefox的问题。 问题是Firefox中的滑动事件不起作用。这是我正在使用的代码(你在图像上滑动):

$('#slider_Backgrounds').on("swipeleft",sliderControlRight);

我希望有人能帮助我让这段代码也能在FireFox中运行。

先谢谢

1 个答案:

答案 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以获取更多选项并更好地使用。