jquery创建遮罩层

$("<div id='div_brg0001'></div>").css({
position:'absolute',
top:0,
left:0,
backgroundColor:"#004400",
opacity:0.1,
zIndex:300
})
.height($(document).height())
.width($(document).width()).hide().appendTo("body")

需要遮罩的时候
$("#div_brg0001").show();
取消遮罩的时候
$("#div_brg0001").hide();

你可能感兴趣的:(jquery创建遮罩层)