修复被锁定的页面滚动
当弹窗锁定了页面 overflow 时,强制并保持滚动可用。
可复制的代码
(function () {
function restore() {
var html = document.documentElement;
var body = document.body;
[html, body].forEach(function (el) {
if (!el) return;
el.style.setProperty('overflow', 'auto', 'important');
el.style.setProperty('position', 'static', 'important');
el.style.removeProperty('height');
el.classList.remove('modal-open', 'no-scroll', 'noscroll',
'overflow-hidden', 'is-locked', 'scroll-lock');
});
}
restore();
var obs = new MutationObserver(restore);
obs.observe(document.documentElement, {
attributes: true,
attributeFilter: ['class', 'style'],
subtree: true
});
})();
如何使用此示例
- 用上方按钮复制代码。
- 安装 JustZix(2 分钟),在目标页面打开扩展。
- 添加一条匹配该页面的新规则。
- 将代码粘贴到规则的 JavaScript 面板并保存 — 每次访问页面时都会运行。
为此示例评分
暂无评分 — 成为第一个。