jQuery dialog theme and style

前端 未结 6 1552

How do I change the background color of the title bar of a jQuery dialog?

I have looked at the themeroller but it does not seem to work for me.

Thanks

6条回答
  •  夕颜
    夕颜 (楼主)
    2021-02-05 14:11

    Sometimes you can't edit the css file. So you can try this:

    dialog = $('
    ').dialog({ title: 'Dialog with css for title bar', open: function() { $(this).parents(".ui-dialog:first").find('.ui-dialog-titlebar').css('background-color','#275D9E'); } });

提交回复
热议问题