1、在电脑上打开软件,新建一个html文件和引入jqueryjs。
2、在html的body里面添加两个单选框radio和一个带有点击事件的按钮,其中两个单选框radio的name需要一致,通过$('input:radio:checked')val()代码获取单选框的值。
3、在浏览器中打开页面,点击获取单选框值按钮,可以看到d出框已经获取勾选的单选框值。
alert($("fare input[checked=checked]")val())或者alert($("fare input[checked=true]")val())或alert($("fare input[checked]")val())
比如
<table><tr>
<td><input type="checkbox" checked/></td>
<td>1</td>
</tr>
</table>
可以用以下代码获取到 1
$(function(){$("input:checked")parents('tr')find('td')eq(1)text();
})
$(this)parents("tr")each(function () {
alert($(this)text());
} );
this表示是radio这个哦
alert($(sender)parent()next()text());
jquery获取被选中的radio的值方法是轮循checked属性:
完整例子如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 10 Transitional//EN" ">
以上就是关于怎么用JS获取单选按钮的值,全部的内容,包括:怎么用JS获取单选按钮的值,、jquery 获取某个class下单选按钮的值、jQuery获取到一个table表格中被单选框选中的行的其他列的值怎么做上代码!等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)