.modal-background{
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.5);
overflow: hidden;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
//outline: 0;
z-index: 9;
}
如果不想让蒙版后面滑动 加上js
$(“body,html”).css({“overflow”:”hidden”});
取消不可滑动
$(“body,html”).css({“overflow”:”auto”});