有三个文件组成:select.js;city.jsp;test.jsp 1.select.js文件。进行js操作 function clearselect(obj) { clearList(obj); obj.options[0] = new Option("没有回答","0"); } function changelocation(obj,locationid,arr){ clearselect(obj); alert(arr.length+"="+locationid); for (i=0;i < arr.length; i++){ //alert(arr[i][2]+"="+locationid); if (arr[i][2] == locationid){ obj.options[obj.length] = new Option(arr[i][1], arr[i][0]); } } } function clearList(ctrl){ if (document.all) { for(;ctrl.options.length>0;) ctrl.options.remove(ctrl.options.length-1); }else{ for(;ctrl.options.length>0;) ctrl.options[ctrl.options.length-1] = null; } } 2.city.jsp文件。查询出城市后,将城市放入到js数组中。 //将市的信息放入数组中 var vcity = new Array(); vcity[] = new Array("","",""); 3.test.jsp文件。具体的选择操作