我在同一頁上使用數據表和對話框,我想爲每個應用不同的主題。我如何實現它?目前我的數據表主題適用於這兩個,我如何範圍對話框。主題jQuery對話框
下面是我的對話框代碼
$('#newVisit').dialog({
modal: true,
autoOpen: false,
draggable: true,
width: 'auto',
height: 'auto',
title: "Add New Visit"
// open: function() {
// $(this).parents(".ui-dialog:first").find(".ui-dialog-titlebar").addClass("ui-state-error");
// }
}); //.parent(".ui-dialog").wrap("<div class='theme-smoothness'></div>");
我已經試過包裝,但沒有成功。 任何想法,將不勝感激。
我想下面的代碼來實現它們,但能成功,有誰能夠告訴我,這可能是正確的解決方案 $( '#newVisit')對話框({ 模式:真, 的AutoOpen:假的, 拖動:真實, 寬度: '汽車', height:'auto', title:「Add New Visit」 })。parent('。ui-dialog')。wrap('
'); – ChandaMAMA