html+css显示协议样式
.ins-reg-msg{ width:100%; height:100%; background-color:#dedede; position:absolute; top:0px;left:0px; display:none; padding-bottom:50px; overflow:hidden; z-index:999; } .ins-reg-mhead{ font-size:18px; padding:10px; text-align:center; background-color:white; font-weight:bold; } .ins-reg-mcontent{ margin:10px 10px 30px 10px; background-color:white; padding:0px 20px; height:97%; overflow:auto; } .ins-reg-mclose{ float:right; } <div class="ins-reg-msg"> <div class="ins-reg-mhead"><span id="ins-msg-head"></span><div class="ins-reg-mclose" onclick="regclose()"><img src="~/Content/images/icon_close.png" width="25" /></div></div> <div class="ins-reg-mcontent"></div> </div> function regclose() { $(".ins-reg-msg").css("display", "none"); }