bootstrap-select is a pull-down search plug-in for boot. When using it, we sometimes need to dynamically load dynamic data from the background or directly.
The following is the dynamic loading of the second-level linkage method according to the first-level drop-down menu. (not ajax background acquisition)
First introduce js and css files (one css and two js)
<link rel="stylesheet" href="css/" rel="external nofollow" >
js omitted
1. Pull-down search (html)
<select class="selectpicker" data-live-search="true" > <option value="-1">Please select</option> <option value="0">0</option> <option value="1">1</option> <option value="2">2</option> <option value="3">3</option> </select> <select class="selectpicker" data-live-search="true" > <option value="-1">Please select</option> </select>
2. Loading data Secondary linkage (js)
function smallScreen(){ // The spacing processing of personal items can be omitted if($(window).width()<768){ $('.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn)').css({ 'width':'100%', 'margin-top':'10px' }); } } $(function(){ var erji=[ ['Haidian District','Dongcheng District','Xicheng District'], // 0 ['Pudong District','Jinshan District','Huangpu District'], // 1 ['Taizhou City','Hangzhou City','Ningbo City','Jiaxing City'], // 2 ['Zhengzhou City','Luoyang City','Kaifeng City'] // 3 ]; var yuan = '<li data-original-index="-1" class>' + // String stitching '<a tabindex="0" data-tokens="null" role="option" aria-disabled="false" aria-selected="false">' + '<span class="text">Please select</span>' + '<span class="glyphicon glyphicon-ok check-mark"></span>' + '</a>' + '</li>'; $('#d1').change(function(){ // First-level drop-down menu option changes event if($(this).val() === '-1'){ $('#d2').prev('-menu').find('ul').html(yuan); $('#d2').html('<option>Please select </option>'); $('.selectpicker').selectpicker('refresh'); smallScreen(); return; } var cityIndex = erji[ ]; // The current subscript is at the second level corresponding content var html = '<li data-original-index="-1" class>' + // Pull down to search for dynamically loaded tags '<a tabindex="0" data-tokens="null" role="option" aria-disabled="false" aria-selected="false">' + '<span class="text">Please select</span>' + '<span class="glyphicon glyphicon-ok check-mark"></span>' + '</a>' + '</li>'; var erjiOption = '<option value="0">Please select</option>'; // Colleagues add option for(var i = 0;i<;i++){ html+= '<li data-original-index='+i+'>' + '<a tabindex="0" data-tokens="null" role="option" aria-disabled="false" aria-selected="false">' + '<span class="text">'+cityIndex[i]+'</span>' + '<span class="glyphicon glyphicon-ok check-mark"></span>' + '</a>' + '</li>'; // For compatible with ie, string splicing is used instead of ES6 template strings. // Add option erjiOption += '<option value='+i+'>'+cityIndex[i]+'</option>'; } $('#d2').prev('-menu').find('ul').html(html); $('#d2').html(erjiOption); $('.selectpicker').selectpicker('refresh'); smallScreen(); }); }); });
Personal use is valid.
The above is all the content of this article. I hope it will be helpful to everyone's study and I hope everyone will support me more.