如何更改jquery的css背景颜色弹出widget-header

时间:2014-11-30 14:52:37

标签: jquery css popup

我使用jquery创建弹出警报,但我不知道如何自定义弹出的CSS,例如更改widget-header的baground颜色。 以下是代码:

 dialog = $("#dialog").dialog({
       autoOpen: false,
        height: 400,
        width: 480,
        modal: true,

1 个答案:

答案 0 :(得分:0)

没有api可以更改对话框jquery的背景ui你需要使用自定义css,看看下面的css代码

.ui-widget-header {
  background-image: none;
  background-color: #333;
  color: white;
}