本人对语言JavaScript不太懂,却急需这样的一个下拉菜单:
点击下拉菜单的选项,就在指定的位置出现不同的对应的内容.没有选择的选项,其相应的内容则隐藏.
如:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>新建网页 2</title>
</head>
<body>
<table border="1" width="100%" style="border-collapse: collapse" height="112">
<form method="POST" name="myform" action="abc.asp">
<tr>
<td width="19%" height="53"> 所属栏目:</td>
<td height="53" width="80%">
<select size="1" name="ClassID">
<option selected>选择栏目...</option>
<option value="选项1">选项1</option>
<option value="选项2">选项2</option>
<option value="选项3">选项3</option>
</select>
</td>
</tr>
<tr>
<td width="99%" height="53" colspan="2">内容1</td>
</tr>
<tr>
<td width="99%" height="53" colspan="2">内容2</td>
</tr>
<tr>
<td width="99%" height="53" colspan="2">内容3</td>
</tr>
</form>
</table>
</body>
</html>
请问用JavaScript怎么添加编程?