js怎么获取当前被选中的option值
2个回答
2017-10-02
展开全部
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
</head>
<body>
<select id="sel" onchange="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(sel[sid].value+'-'+sel[sid].innerHTML);
}
</script>
</html>
jq的话就一句
$("#sel option:selected").text();
$("#sel option:selected").val();
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
</head>
<body>
<select id="sel" onchange="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(sel[sid].value+'-'+sel[sid].innerHTML);
}
</script>
</html>
jq的话就一句
$("#sel option:selected").text();
$("#sel option:selected").val();
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询