How to change background color of jQuery UI Dialog?

后端 未结 6 1529
遇见更好的自我
遇见更好的自我 2020-12-15 06:42

I am having tough time figure out how to change background color of jQuery UI Dialog.

I\'ve seen many reference how to change/remove title bar but not <

6条回答
  •  既然无缘
    2020-12-15 06:49

    If you want to target a specific dialog you can do it this way:

    $('#yourDialog').dialog(
    {
        autoOpen: false,
        open: function(e) {
            $(e.target).parent().css('background-color','orangered');
        }
    });
    

提交回复
热议问题