如何設置jquery中彈出窗口標題欄的背景顏色可以給我打電話嗎?如何設置jquery中彈出窗口標題欄的背景顏色
標題文本是「電子郵件選項」。
function showEmailDlg() {
var dlg = $('#dlgEmail').dialog(
{
draggable: true,
position: 'center',
modal: true,
width: 1028,
height: 568,
title: 'Email Options',
resizable: false
}
);
dlg.parent().appendTo($("form:first"));
}
您使用的是jQuery UI的對話框什麼插件嗎? –
打開mozilla,調試模式,選擇標題欄,檢查它的css來自哪裏,修改css的插件 –