文檔首頁>>jQuery EasyUI使用教程>>jQuery EasyUI使用教程:自定義對話框工具欄和按鈕
jQuery EasyUI使用教程:自定義對話框工具欄和按鈕
Kendo UI for jQuery——創(chuàng)建現(xiàn)代Web應用程序的最完整UI庫!查看詳情>>>
您可以創(chuàng)建一個帶有工具欄和按鈕的對話框,可以使用HTML標記創(chuàng)建。本教程主要描述了如何將工具欄和按鈕添加到對話框中,不需要任何的javascript代碼。
創(chuàng)建對話框
<div id="dd" class="easyui-dialog" title="My Dialog" style="width:400px;height:200px;padding:10px" toolbar="#dlg-toolbar" buttons="#dlg-buttons"> Dialog Content. </div>
創(chuàng)建工具欄
<div id="dlg-toolbar"> <table cellpadding="0" cellspacing="0" style="width:100%"> <tr> <td> <a href="#" class="easyui-linkbutton" iconCls="icon-edit" plain="true">Edit</a> <a href="#" class="easyui-linkbutton" iconCls="icon-help" plain="true">Help</a> </td> <td style="text-align:right"> <input></input><a href="#" class="easyui-linkbutton" iconCls="icon-search" plain="true"></a> </td> </tr> </table> </div>
創(chuàng)建按鈕
<div id="dlg-buttons"> <table cellpadding="0" cellspacing="0" style="width:100%"> <tr> <td> <img src="email.gif"/> </td> <td style="text-align:right"> <a href="#" class="easyui-linkbutton" iconCls="icon-save" onclick="javascript:alert('save')">Save</a> <a href="#" class="easyui-linkbutton" iconCls="icon-cancel" onclick="javascript:$('#dd').dialog('close')">Close</a> </td> </tr> </table> </div>
請注意,對話框的工具欄和按鈕屬性也可以通過 string 值指定,它將充當作為一個選擇器去選擇一個適當?shù)?DIV 元素,并追加到工具欄或者按鈕的位置。
下載EasyUI示例:easyui-dialog-demo.zip