JQuery切换功能在某些移动设备浏览器中无效,如moto e

时间:2016-10-26 08:00:14

标签: jquery html

下面的代码在Windows浏览器中工作正常但在某些移动设备(如moto-e)中无法正常工作。我该怎么办?

Jquery的

<div class="child-row">
     <div class="child-head">
           Head Text
     </div>
     <div class="child-body">
           Body Text
     </div>
</div>

HTML

{{1}}

提前致谢。

1 个答案:

答案 0 :(得分:0)

Click events don't work as expected on touch enabled devices.因此,只有某些元素定义了点击事件,但您可以手动定义它。例如

$(".child-row .child-head").each(function(){
    this.onclick = function() {}
});

您也可以使用触摸事件

$(".child-row .child-head").on('touchstart', function() {...