示例代码:html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
select联动function selct(arr){
var toList = document.form1.elements["slt2"];
var toLen = toList.options.length;
//清空列表
if(toLen>=0){
toList.options.length =0;
toLen=0;
}
for(var i=0;i
var opn = new Option(arr[i],i);
toList.options[toLen] =opn;
toLen++;
}
}
function updateSelect(str){
switch(str){
case "1":selct(new Array("朝天门","解放碑","沙坪坝","观音桥","南坪","高新区"));break;
case "2":selct(new Array("上海市1","上海市2","上海市3","上海市4","上海市5"));break;
case "3":selct(new Array("南温泉","北温泉","西温泉","东温泉","北京市"));break;
}}
请选择省份:
请选择地市
重庆市
上海市
北京市
地市:
请选择地市
效果图: