获取单选框的值
Posted yangwan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取单选框的值相关的知识,希望对你有一定的参考价值。
<body>
<input type="radio" name="gender" id="man" value="male" oninput="ss()">
<label for="man" style="color: #666666;">男</label>
<input type="radio" name="gender" id="woman" value="female" oninput="uu()">
<lable for="woman" style="color: #666666">女</lable>
<script type="text/javascript">
function ss(){
var vv=$(‘input:radio:checked‘).val()
console.log(vv)
}
function uu(){
var vv=$(‘input:radio:checked‘).val()
console.log(vv)
}
</script>
</body>
以上是关于获取单选框的值的主要内容,如果未能解决你的问题,请参考以下文章