页面弹层下的内容不滚动

/**
     * 为了方便解绑事件,声明一个阻止页面默认事件的函数
     * @param e
     */
    function pdEvent(e) {
        e.preventDefault();
    }

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

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

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

你可能感兴趣的:(页面弹层下的内容不滚动)