JS 获取select(多选下拉)中所选值的示例代码
发布时间:2016-12-30 来源:查字典编辑
摘要:复制代码代码如下:NewDocument请选择测试一测试二测试三测试四测试五选中的项目:
复制代码 代码如下:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 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">
<>
</script>
<select name="objsel" size=8 multiple>
<option value="0" selected>请选择
<option value="1">测试一
<option value="2">测试二
<option value="3">测试三
<option value="4">测试四
<option value="5">测试五
</select>
<input type="button" value="输出">
选中的项目:<input type="text" name="output">
</body>
</html>