弹出模态窗口使背景变灰 showModalDialog

  $("#opener").click(
   function (){
    $("body").addClass("backgroud_gray");
    window.showModalDialog("viewPhoto.html","", "dialogWidth:820px;dialogHeight:620px;status:no;");
    $("body").removeClass("backgroud_gray");
   }
  );

 

用到的样式如下:

.backgroud_gray {
 background-color: #999999;
 filter: Alpha(Opacity = 40);
 opacity: .4;
 z-index: 10000;
}

你可能感兴趣的:(showModalDialog)