码迷,mamicode.com
首页 > Web开发 > 详细

js 获取select option中的值或者value值

时间:2020-03-31 17:12:17      阅读:80      评论:0      收藏:0      [点我收藏+]

标签:hang   title   nbsp   cron   sid   cti   sele   class   element   

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
</head>
<body>
<select id="sel" οnchange="cge()">
   <option value="1">4</option>
   <option value="2">5</option>
   <option value="3">6</option>
</select>
</body>
<script>
    function cge(){
        var sel=document.getElementById(‘sel‘);
                var sid=sel.selectedIndex;
        alert(‘value值:‘+sel[sid].value+‘,option值:‘+sel[sid].innerHTML);
    }
</script>
</html>

 

js 获取select option中的值或者value值

标签:hang   title   nbsp   cron   sid   cti   sele   class   element   

原文地址:https://www.cnblogs.com/qcjdp/p/12606432.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!