选择单个选择中的重复框

时间:2017-05-16 07:23:36

标签: javascript jquery html css jquery-chosen

enter image description here

enter image description here

如上图所示,有两个输入框,但应该只有一个。打开列表时,第二个框正常运行,但是当未选中该框时它应该消失。请注意,我正在处理的网站有服装CSS。

AVCaptureDeviceInput

HTML

//start chosen search Jquery/javascript
  $(document).ready(function(){
    var json_path_options= 'http://localhost/complaints_old/webservice/getMunicipality_for_pie';
    $.getJSON( json_path_options, function( data ){

      for(i=0;i<data.data.length;i++){
        $("#options").after('<option value="'+data.data[i].municipality_id+'" >'+data.data[i].municipality_nameEN+'</option>');
      }
      $(".search").chosen({ width:"90%" });
    });

  });
//end chosen search

0 个答案:

没有答案