我在运行时形成一些羊肚菌弹出,如下所示,但我想应用背景颜色 css 如何应用它?
$("<div></div>")
.addClass("dialog1")
.attr("id", $(this).attr("id"))
.appendTo("body")
// .addCss("background-color","red")
.dialog({
title: $(this).attr("data-dialog-title"),
close: function () { $(this).remove() },
width: $(this).attr("data-dialog-width"),
modal: true,
position: 'center',
resizable: $(this).attr("data-dialog-resizable")
}).load(url);
$(".close").live("click", function (e) {
e.preventDefault();
// $(this).dialog('destroy').remove();
$(this).closest(".dialog1").dialog("close");
});