您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關EasyUI如何實現下拉框多選功能的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
效果圖:
這個沒什么說的,直接引入css和js文件和圖片,調用js即可。下面是源碼:
<html> <head> <meta charset="utf-8" /> <title>利用EasyUI實現多選下拉框</title> <link rel="stylesheet" type="text/css" href="css/easyui.css" rel="external nofollow" /> <style type="text/css"> ul{ width: 200px !important; } li{ width: 50px !important; float: left !important; } </style> <script src="js/jquery.min.js" type="text/javascript" charset="utf-8"></script> <script src="js/jquery.easyui.min.js" type="text/javascript" charset="utf-8"></script> <script type="text/javascript"> $(function () { $('#ddlLine').combotree({ valueField: "id", //Value字段 textField: "text", //Text字段 multiple: true, data: [{ "id": 1, "text": "All", "children": [{ "id": 13, "text": "C1" }, { "id": 14, "text": "C2" }, { "id": 15, "text": "C3"}]}], // url: "tree_data2.json", //數據源 onCheck: function (node, checked) { //讓全選不顯示 $("#ddlLine").combotree("setText", $("#ddlLine").combobox("getText").toString().replace("全選,", "")); }, onClick: function (node, checked) { //讓全選不顯示 $("#ddlLine").combotree("setText", $("#ddlLine").combobox("getText").toString().replace("全選,", "")); } }); }) </script> </head> <body> 多選:<select id="ddlLine" class="easyui-combotree" > </select> </body> </html>
感謝各位的閱讀!關于“EasyUI如何實現下拉框多選功能”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。