jQuery对话框主题和样式

Pic*_*ght 14 jquery themes dialog titlebar background-color

如何更改jQuery对话框标题栏的背景颜色?

我看过themeroller但它似乎对我不起作用.

谢谢

CMS*_*CMS 13

您可以通过修改ui-dialog-titlebar CSS类来更改它,但我强烈建议您使用ThemeRoller工具.

也可以看看:


Don*_*a4e 12

我这样做(为标题添加"ui-state-error"样式):

<script type="text/javascript">
            $(function () {
                $("#msg").dialog({
                    open: function () {
                        $(this).parents(".ui-dialog:first").find(".ui-dialog-titlebar").addClass("ui-state-error");
                    }

                });

            });
        </script>  
Run Code Online (Sandbox Code Playgroud)

  • 不要用javascript更改它.使用CSS. (6认同)