有三个文件组成: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文件。具体的选择操作
下拉框联动
最新推荐文章于 2023-11-13 18:08:40 发布
博客介绍了由select.js、city.jsp和test.jsp三个文件组成的功能。select.js进行js操作,包含清除选择、改变位置等函数;city.jsp查询城市信息并放入js数组;test.jsp进行具体的选择操作。
829

被折叠的 条评论
为什么被折叠?



