Pic*_*ght 14 jquery themes dialog titlebar background-color
如何更改jQuery对话框标题栏的背景颜色?
我看过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)