1
我試圖讓與jQuery的自定義對話框。如何更改對話框標題欄中的顏色?如何自定義jquery對話框?
我有jQuery的代碼,
$("#dialog").dialog("open");
var state = true;
if (state) {
$("#dialog").animate({
backgroundColor: "#FFEDB8",
color: "black",
});
$("#dialog").dialog({ autoOpen: false });
$(function() {
$("#dialog").dialog({
title: "Acquaintance Details",
modal: true,
buttons: {
Invite: function() {
$(this).dialog("close");
},
Cancel: function() {
$(this).dialog("close");
}
}
});
});
然後HTML代碼
<div id="dialog">
<p>Are u want add </p>
<form>
<fieldset>
<label id="fristname"></label>
<br><label id="lastname"></label>
<br><label id="mobilenumber"></label>
</fieldset>
</form>
</div>
如果你需要一個明確的答案添加http://jsfiddle.net –
要麼用自己的CSS做手工,或使用themebuilder。 –