我希望在模态对话框loadui-widget-overlay和property background-color
时更改页面packground颜色
当我用css设置它时工作正常
.ui-widget-overlay {
background-color: white;
}
但我希望动态更改它因为我有一些模态对话框我想要只改变其中一个我尝试使用jquery但它不起作用
$('.ui-widget-overlay').css('background', 'white');
为什么呢?
答案 0 :(得分:6)
您的代码存在问题
$('.ui-widget-overlay').css('background', 'white');
您将background
设置为white
,但当时在DOM中不存在类ui-widget-overlay
的元素。
它与CSS
一起使用,因为只要类ui-widget-overlay
在DOM中,css规则就可以使用。
但在.css()
中使用jQuery
会inline styling
,所以如果DOM中不存在该元素,则可以添加inline styling
。
解决方案
对话框打开后,您可以执行此代码,因为现在存在类ui-widget-overlay
。
工作代码
$("#dialogDiv").dialog({
autoOpen: false,
modal: true
});
$("#btn").click(function () {
$("#dialogDiv").dialog('open');
$('.ui-widget-overlay').css('background', 'white'); //write background color change code here
});
答案 1 :(得分:2)
ui-widget-overlay
在您的代码中不存在,所以我移动了它。