Pop Up a dialog,modal = true,不能覆盖整个父窗口


原因:是jquery-ui-1.10.0.custom.css样式中不完整,需要补充


在jquery-ui-1.10.0.custom.css中
.ui-widget-overlay {
  background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
  opacity: .30;
  filter:Alpha(Opacity=30);
}

需要补充的是自定义样式:

.ui-widget-overlay {
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
}

你可能感兴趣的:(jquery-ui)