chengkun
2025-05-20 4c1f0f659384d71ce28be1fc0343e56e75568fe1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/**
 * 省市县三级联动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 = "<option value=''>请选择</option>";
      if(data.value){
          $.each(ct[data.value], function(k, v){
              html += "<option value='" + v + "'>" + cn[v] + "</option>";
            });
      }
      if(data.elem.name=='provinceid'){
        $("#cityid").html(html);
        $("#three_cityid").html("<option value=''>请选择</option>");
      }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');
    
  }
 
});