bootstrap-treeview.js ist ein leistungsstarkes Baummenü-Plug-in Dieser Artikel demonstriert die Aufrufmethode von bootstrap-treeview.js.
Es können Daten alle auf einmal oder asynchron geladen werden. Es unterstützt Kontrollkästchen, wählbar, Knotenkaskadierung usw. und kann auch große Datenmengen übertragen.
Verwendung (empfohlenes Lernen: Bootstrap-Video-Tutorial)
<!doctype html> <html> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>treeview+bootstrap多级下拉树插件</title> <link href="//cdn.bootcss.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet"> <style type="text/css"> .shouce-header{margin-bottom: 15px;font-family: "Segoe UI", "Lucida Grande", Helvetica, Arial, "Microsoft YaHei", FreeSans, Arimo, "Droid Sans", "wenquanyi micro hei", "Hiragino Sans GB", "Hiragino Sans GB W3", "FontAwesome", sans-serif;} .shouce-icon{color: #fff;} </style> <!--[if IE]> <script src="//cdn.bootcss.com/html5shiv/3.7.3/html5shiv.min.js"></script> <![endif]--> </head> <body> <div id="treeview1"></div> <script> var defaultData = [ { text: 'Parent 1', href: '#parent1', tags: ['4'], nodes: [ { text: 'Child 1', href: '#child1', tags: ['2'], nodes: [ { text: 'Grandchild 1', href: '#grandchild1', tags: ['0'] }, { text: 'Grandchild 2', href: '#grandchild2', tags: ['0'] } ] }, { text: 'Child 2', href: '#child2', tags: ['0'] } ] }, { text: 'Parent 2', href: '#parent2', tags: ['0'] }, ]; $('#treeview1').treeview({ data: defaultData }); </script> </body> </html>
Weitere technische Artikel zu Bootstrap finden Sie unter Bootstrap-Tutorial Spalte zum Lernen!
Das obige ist der detaillierte Inhalt vonHat Bootstrap ein Baummenü?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!