美文网首页
绑定滑动 移除滑动

绑定滑动 移除滑动

作者: yiqian091 | 来源:发表于2018-04-23 19:02 被阅读0次

    //绑定事件

        function unbindEvent() {

            $('body').bind('touchstart', function (event) {

                event.stopPropagation();

            });

            $('body').bind('touchmove', function (event) {

                event.stopPropagation();

            });

            $('body').bind('touchend', function (event) {

                event.stopPropagation();

            });

        }

        //解除绑定

        function bindEvent() {

            $('body').unbind('touchstart');

            $('body').unbind('touchmove');

            $('body').unbind('touchend');

        }

    相关文章

      网友评论

          本文标题:绑定滑动 移除滑动

          本文链接:https://www.haomeiwen.com/subject/fjollftx.html