/** * 省市县三级联动select表单 */ layui.use(['form'], function(){ var $ = layui.$, form = layui.form; if(ct.length>0 && ct!='new Array()'){ form.on('select(citys)', function(data){ var html = ""; if(data.value){ $.each(ct[data.value], function(k, v){ html += ""; }); } if(data.elem.name=='provinceid'){ $("#cityid").html(html); $("#three_cityid").html(""); }else{ $("#cityshowth").show(); $("#three_cityid").html(html); } form.render('select'); }); }else{ if($("#cityid")){ $("#cityid").parent().remove(); } if($("#three_cityid")){ $("#three_cityid").parent().remove(); } form.render('select'); } });