在iPhone / iPad中滚动时防止触摸

时间:2014-01-21 11:41:23

标签: jquery html ios iphone ipad

我有一个带有一些可扩展div的HTML页面。这些div可以在onclick上展开和关闭(在div上)。但它在滚动页面时会在iPhone / iPad中产生问题。如果我触摸div并滚动页面,它也会触发touchend事件并扩展div。我想预测一下。 我的JS代码示例:

$(function() {
    $(document).on('click touchend', '.mydiv', function() {
        var clickedItem = $(this);
        var parent = clickedItem.parent('li');
        setTimeout(function() {
            parent.removeClass('closed').addClass('opened');
        },1000);
        return false;
    });
});

我没有使用jquery mobile。这只是一个网页。我可以使用jquery touchmove吗?

0 个答案:

没有答案