在彈出遮罩層的時候頁面不需要滾動
// 頁面禁止滾動 $("html").css({ height: "100%", overflow: "hidden" }); $("body").css({ height: "100%", overflow: "hidden" });複製程式碼
關閉遮罩層頁面滾動
// 頁面滾動 $("html").css({ height: "100%", overflow: "visible" }); $("body").css({ height: "100%", overflow: "visible" });複製程式碼