<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>获取下拉列表的值</title>
<script>
function validate(obj){
alert("你的选择是:"+obj.value)
}
</script>
</head>
<body>
<form>
<table>
<tr>
<td>身份:</td>
<td>
<select name="Type" onblur="validate(this)">
<option value="">请选择</option>
<option value="系统管理员">系统管理员</option>
<option value="楼宇管理员">楼宇管理员</option>
<option value="学生">学生</option>
</select>
</td>
</tr>
</table>
</form>
</body>
</html>