/* Ajax three-level linkage Date: 2013-2-26 settings parameter description ----- firstUrl: first-level drop-down data acquisition URL , josn returns firstValue: default first-level drop-down value secondUrl: second-level drop-down data acquisition URL, josn returns secondValue: default second-level drop-down value thirdUrl: third-level drop-down data acquisition URL, josn Return thirdValue: default three-level drop-down value nodata: no data status required: required option --------------------- --------- */ (function($){ $.fn.linkSelect=function(settings){ if($(this).size()<1 ){return;}; //Default value settings=$.extend({ firstUrl:"js/city.min.js", firstValue:null, secondValue: null, thirdValue:null, nodata:null, required:true },settings); var box_obj=this; var first_obj=box_obj.find(". first"); var second_obj=box_obj.find(".second"); var third_obj=box_obj.find(".third"); var select_prehtml=(settings.required) ? "" : ""; var prepareSelectHtml=function(jsonArray){ var temp_html=select_prehtml; $.each(jsonArray,function( index,row){ temp_html =""; }); return temp_html; }; //Assign the secondary drop-down box function var secondStart=function(){ second_obj.empty().attr("disabled",true); third_obj.empty( ).attr("disabled",true); if(first_obj.val()==''){ return; } $.getJSON(settings.secondUrl, { firstValue: first_obj.val(), time: new Date().getTime() }, function(jsonResult){ if(!jsonResult.success){ if(settings.nodata=="none"){ second_obj.css("display","none"); third_obj.css("display","none"); }else if(settings.nodata=="hidden"){ second_obj.css("visibility","hidden"); third_obj.css("visibility","hidden"); }; return; } // Traverse Assign secondary drop-down list second_obj.html(prepareSelectHtml(jsonResult.data)).attr("disabled",false).css({"display":"","visibility":""}); thirdStart(); });
}; // Assign the third-level drop-down box function var thirdStart=function(){ third_obj.empty().attr ("disabled",true); $.getJSON(settings.thirdUrl, { firstValue: first_obj.val(),secondValue:second_obj.val(), time: new Date().getTime() }, function( jsonResult){ if(!jsonResult.success){ if(settings.nodata=="none"){ third_obj.css("display","none"); }else if(settings.nodata=="hidden"){ third_obj.css("visibility","hidden"); }; return; } // Traverse assignment three Level drop-down list third_obj.html(prepareSelectHtml(jsonResult.data)).attr("disabled",false).css({"display":"","visibility":""}); thirdStart (); }); }; var init=function(){ // Traverse the assignment one-level drop-down list $.getJSON(settings.firstUrl, {time: new Date().getTime() }, function(jsonResult){ if(!jsonResult.success){ return; } // Traverse the assigned one-level drop-down list first_obj. html(prepareSelectHtml(jsonResult.data)); secondStart(); // If the first and second level values are passed in, select them. (setTimeout is set for compatibility with IE6) setTimeout(function(){ if(settings.firstValue && settings.firstValue.length>0){ first_obj.val(settings.firstValue); secondStart(); setTimeout(function(){ if(settings.secondValue && settings.secondValue.length>0){ second_obj.val(settings.secondValue); thirdStart(); setTimeout(function(){ if(settings.thirdValue && settings.thirdValue.length>0){ third_obj.val(settings.thirdValue); }; },1 ); }; },1); }; },1); }); // Event occurs when level one is selected first_obj. bind("change",function(){ secondStart(); }); // An event occurs when the second level is selected second_obj.bind("change",function(){ thirdStart(); }); }; //Initialize the first drop-down box init(); }; })(jQuery);
${rc.contextPath}/repair/loadCategory The corresponding background method and return json value:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn