問題描述:
1、html
<div id="dig" style="padding:10px;width:500px;height:300px;font-family:微軟雅黑;font-size:16px;">?
? ? Dialog Content.?
</div>?
2、js
$("#dig").css("display", "block");
$('#dig').dialog({
? ? ? ? title: "title",
? ? ? ? width: 680,? ? ??
? ? ? ? closed: false,
? ? ? ? cache: false,
? ? ? ? modal: true,
? ? ? ? buttons: [? ? ? ? ??
? ? ? ? ? ? {
? ? ? ? ? ? ? ? text: '關閉',
? ? ? ? ? ? ? ? iconCls: 'icon-cancel',
? ? ? ? ? ? ? ? handler: function () {
? ? ? ? ? ? ? ? ? ? $('#dig').dialog('close');
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }]
? ? });
3、問題描述
首次打開彈窗 彈窗的div里面的style樣式還在,第二次打開彈窗樣式會丟失
4、避免的解決方案
盡量避免在彈窗的div上寫樣式,可以在套個div在里面寫樣式