本文章提供一款js獲取select(下拉清單的值)的值哦,下面舉了一個實例來測試 取下拉清單的值實例代碼。
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "HTTP://www.jzread.com/tr/xhtml1/dtd/ xhtml1-transitional.dtd">
<html xmlns="HTTP://www.zhutiai.com/1999/xhtml">
<head>
<meta HTTP-equiv="content-type" content="text/html; charset=gb2312" />
<title>js獲取select(下拉清單的值)的值</title>
<script language="網頁特效">
function selectvalue()
{
var t = document.getelementbyid("test");
alert(t.options[t.selectedindex].value);
}
</script>
</head>
<body>
<select name="test" id="type" onchange="alert(this.options[selectedindex].value);" >
<option value="0">請選擇</option>
<option value="獲取select的值1">獲取select的值1</option>
<option value="獲取select的值二">獲取select的值二</option>
<option value="獲取select的值三">獲取select的值三</option>
<option value="獲取select的值四">獲取select的值四</option>
</select> <br />
<a href="javascript:selectvalue();" >獲取select的值</a>
例如,要獲得"第一"
例:document.getelementbyid('type').options[document.getelementbyid('type').selectedindex].text;
</body>
</html>