本帖最后由 李志敏 于 2013-5-20 01:10 编辑
html中会用了 这个应该就会了,不知道是不是想这样- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <script type="text/javascript">
- function selSex(){
- var sex=document.getElementById("sex").value;
- alert(sex);
- }
- </script>
- <title>无标题文档</title>
- </head>
- <select size='1' name="sex" id="sex" onchange="selSex();">
- <option value='male' selected="selected">男</option>
- <option value='female'>女</option>
- <option value='unknown'>未知</option>
- </select>
- <body>
- </body>
- </html>
复制代码 |