`
8040
  • 浏览: 26869 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

js 联动

 
阅读更多
function clearSelect(ctlSelect){
	ctlSelect.options.length = 0;
}
function addOption(select,text,value) {
	if(text != "")	{
	   var obj   = document.createElement("option");
obj.text  = text;
	   obj.value = value;
	   select.options.add(obj);
	}
}	
function add_city(){    
		var countryId = document.form1.selectcountry.value;
		clearSelect(document.form1.selectcity);
		addOption(document.form1.selectcity,'全部','');		
		if(countryId != ""){
			for(var i = 0; i < CityList.length; i++)  {			
				if( CityList[i].id1 == countryId) 
				    addOption(document.form1.selectcity,CityList[i].name1,CityList[i].id2);								
				}
			  }
	if(document.form1.selectcity.options[0]!=null) document.form1.selectcity.options[0].selected = true;
}


分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics