我使用jquery创建弹出警报,但我不知道如何自定义弹出的CSS,例如更改widget-header的baground颜色。 以下是代码:
dialog = $("#dialog").dialog({
autoOpen: false,
height: 400,
width: 480,
modal: true,
答案 0 :(得分:0)
没有api可以更改对话框jquery的背景ui你需要使用自定义css,看看下面的css代码
.ui-widget-header {
background-image: none;
background-color: #333;
color: white;
}