0
是否有人想知道是否有簡單的方法在單個頁面上排列多個對話框?在頁面上自動排列多個對話框
例如爲:
<div id="div_adduser" class="useradmin_dialogs">
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
<tr>
<td><strong>Add System User</strong></td>
</tr>
</table>
<div>
<div id="div_chpw" class="useradmin_dialogs">
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
<tr>
<td><strong>Change Password</strong></td>
</tr>
</table>
</div>
// Set Dialog boxes
$(function() {
$(".useradmin_dialogs").dialog({
width: 460,
autoOpen: false,
});
$(".ui-dialog-titlebar-close").remove();
});
我想有,說6個左右的對話框,但想他們只是在一個網格安排。
完美!謝謝! – 2012-03-05 22:07:36