熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> JSP教程 >> 正文

JS 獲取select(多選下拉)中所選值的示例代碼

2022-06-13   來源: JSP教程 
通過js獲取select(多選下拉)中所選值具體實現如下有需要的朋友可以參考下希望對大家有所幫助   復制代碼 代碼如下:

  
<!DOCTYPE HTML PUBLIC "//WC//DTD HTML Transitional//EN">
<html>
<head>
<title> New Document </title>
<meta name="Generator" content="EditPlus">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
</head>
<body>

<script language="JavaScript">
<!
function checkselect(objname){
o = documentgetElementById(objname);
t = documentgetElementById("output");
var count=;
var intvalue="";
for(i=;i<olength;i++){
if(ooptions[i]selected){
intvalue+=ooptions[i]value+"";
count++;
}
}
tvalue=intvaluesubstr(intvaluelength);
alert(count);

}
//>
</script>
<select name="objsel" size= multiple>
<option value="" selected>請選擇
<option value="">測試一
<option value="">測試二
<option value="">測試三
<option value="">測試四
<option value="">測試五
</select>
<input type="button" onclick="checkselect(objsel);" value="輸出">
選中的項目<input type="text" name="output">
</body>
</html>


From:http://tw.wingwit.com/Article/program/Java/JSP/201311/20254.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.