我正在形成像下面的運行時彈出一些羊肚菌,但我想應用背景顏色css如何應用它?如何應用jQuery對話框的背景顏色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");
});
你嘗試使用'的.css()' – bipen 2013-05-08 09:33:06