美文网首页
页面弹层下的内容不滚动

页面弹层下的内容不滚动

作者: 放逐的帝王 | 来源:发表于2017-11-09 14:50 被阅读0次
/**
     * 为了方便解绑事件,声明一个阻止页面默认事件的函数
     * @param e
     */
    function pdEvent(e) {
        e.preventDefault();
    }

    /**
     * 禁止页面滑动
     */
    function unable() {
        $doc.on('touchmove', pdEvent);
    }

    /**
     * 允许页面滑动
     */
    function enable() {
        $doc.off('touchmove', pdEvent);
    }

弹层出现后运行 unable(),弹层隐藏后运行enable()

相关文章

网友评论

      本文标题:页面弹层下的内容不滚动

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