我使用jQuery UI對話框來瀏覽網站上的不同對話框。現在我想知道是否有一種簡單的方法爲不同的對話框使用不同的樣式?jQuery對話框 - 如何爲每個對話框使用不同的樣式?
E.g.提醒如「真正刪除...」應該有不同的風格比其他消息...
現在,有對話框中使用的類:
<div id="dialog-confirm" title="Title of dialog">Text of dialog</div>
然而,實際的樣式將應用於.ui-widget-header
,
,我在源文本中找不到任何地方,所以我想jQuery在某些時候替換了這個,這是真的嗎?
編輯:從docs.jquery.com:
Sample markup with jQuery UI CSS Framework classes
<div class="ui-dialog ui-widget ui-widget-content ui-corner-all ui-draggable ui-resizable">
<div class="ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix">
<span id="ui-dialog-title-dialog" class="ui-dialog-title">Dialog title</span>
<a class="ui-dialog-titlebar-close ui-corner-all" href="#"><span class="ui-icon ui-icon-closethick">close</span></a>
</div>
<div style="height: 200px; min-height: 109px; width: auto;" class="ui-dialog-content ui-widget-content" id="dialog">
<p>Dialog content goes here.</p>
</div>
</div>
Note: This is a sample of markup generated by the dialog plugin, not markup you should use to create a dialog. The only markup needed for that is <div></div>.
什麼是可以有不同的對話框不同風格的最佳方式是什麼?