码迷,mamicode.com
首页 > 其他好文 > 详细

级联下拉列表

时间:2014-07-21 23:27:52      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   width   2014   

//根据所选的省,自动生成对应的市

<html>
	<head>
		<title>级联列表</title>
		<meta http-equiv='Content-Type' content='text/css;charset=utf-8'/>
		<style>
			.yemian{
				margin-left:30%;
				text-align:center;
				font-size:50px;
				width:500px;
				height:500px;
				background-color:blue;
			}   
			.s{
				width:120px;
				height:25px;
			}
		</style>
		<script>
			function st(){
			
				var sheng=document.getElementById('sheng');
				//存省的数组,可自行添加
				var shengs=new Array(new Option("--请选择省--",''),new Option("湖南","hn"),new Option("广东","gd"));
				for(var i=0;i<shengs.length;i++){
					sheng.options[i]=shengs[i];
				}
			}
			//存市的数组,根据省的数组添加
			var shis=new Array();
			shis[0]=new Array(new Option("--请选择市--",''));
			shis[1]=new Array(new Option("长沙",'cs'),new Option("娄底",'ld'),new Option("永州",'yz'));
			shis[2]=new Array(new Option("广州",'gz'),new Option("深圳",'sz'));
			function change(obj){
				var shi=document.getElementById('shi');
				shi.options.length=0;
				var index=sheng.selectedIndex;
				for(var x in shis[index]){
					shi.options[x]=shis[index][x]
				}
			}
		</script>
	</head>
	<body  onload="st()">
		<div class='yemian' >
			<div class="top">级联下拉列表</div>
			<select class='s' id='sheng' onchange='change(this)'>
				<option value=''>--请选择省--</option>
			</select>
			<select class='s' id='shi'>
				<option value=''>--请选择市--</option>
			</select>
		</div>
	</body>


</html>


bubuko.com,布布扣

级联下拉列表,布布扣,bubuko.com

级联下拉列表

标签:style   blog   http   color   width   2014   

原文地址:http://blog.csdn.net/liang5630/article/details/38021757

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!