文檔首頁>>jQuery EasyUI使用教程>>jQuery EasyUI使用教程:創(chuàng)建樹形下拉框
jQuery EasyUI使用教程:創(chuàng)建樹形下拉框
Kendo UI for jQuery——?jiǎng)?chuàng)建現(xiàn)代Web應(yīng)用程序的最完整UI庫!查看詳情>>>
樹形下拉框是一個(gè)帶有下列樹形結(jié)構(gòu)的下拉框。它可以作為一個(gè)表單字段進(jìn)行使用,可以提交給遠(yuǎn)程服務(wù)器。
在本教程中,我們將要?jiǎng)?chuàng)建一個(gè)注冊(cè)表單,帶有name、address、city字段。city字段是一個(gè)樹形下拉框字段,在里面用戶可以下拉樹面板,并選擇一個(gè)特定的城市。
創(chuàng)建表單
<div id="dlg" class="easyui-dialog" style="width:500px;height:250px;padding:10px 30px;" title="Register" buttons="#dlg-buttons"> <h2>Account Information</h2> <form id="ff" method="post"> <table> <tr> <td>Name:</td> <td><input type="text" name="name" style="width:350px;"/></td> </tr> <tr> <td>Address:</td> <td><input type="text" name="address" style="width:350px;"/></td> </tr> <tr> <td>City:</td> <td><select class="easyui-combotree" url="data/city_data.json" name="city" style="width:156px;"/></td> </tr> </table> </form> </div> <div id="dlg-buttons"> <a href="#" class="easyui-linkbutton" iconCls="icon-ok" onclick="savereg()">Submit</a> <a href="#" class="easyui-linkbutton" iconCls="icon-cancel" onclick="javascript:$('#dlg').dialog('close')">Cancel</a> </div>
從上面的代碼可以看到,我們?yōu)橐粋€(gè)名為 'city' 的樹形下拉框字段設(shè)置了一個(gè)url屬性,這個(gè)字段可以從遠(yuǎn)程服務(wù)器檢索樹形結(jié)構(gòu)數(shù)據(jù)。請(qǐng)注意,這個(gè)字段有一個(gè)樣式名字叫 'easyui-combotree',所以我們不需要寫任何的js代碼,樹形下拉框字段將自動(dòng)渲染。
下載EasyUI示例:easyui-form-demo.zip