我是jQuery使用Div作爲對話框,但在對話框被稱爲div顯示在我的屏幕底部之前。我想隱藏一個DIV?
我該如何隱藏這個div?
<div id = "PrintDialog" title="Warning">
<p>Once you print, no changes may be made to this contract. Are you sure you want to print?</p>
<input type="button" value="Print" id="btnDialogPrint" />
<input type="button" value="Cancel" id="btnDialogCancel" />
</div>
我想繼續使用Div,除非它的對話框沒有顯示。
在此先感謝。
有沒有這樣的事情顯示:隱藏。編輯 – nunespascal
您正在考慮隱藏可視性,這通常是不期望的,因爲它會保留空白空間。 – ericosg
固定,謝謝:) – Jonathan