首页 > 代码库 > jQuery操作<input type="radio">
jQuery操作<input type="radio">
input type="radio">如下:
<
input
type="radio" name="city" value="http://www.mamicode.com/BeiJing">北京
<
input
type="radio" name="city" value="http://www.mamicode.com/TianJin">天津
<
input
type="radio" name="city" value="http://www.mamicode.com/NanJing">南京
<
input
type="radio" name="city" value="http://www.mamicode.com/YangZhou">扬州
<
input
type="radio" name="city" value="http://www.mamicode.com/SuZhou">苏州
1、获取选中的radio的值:
$("input[name=‘city‘]:checked").val();
使用元素选择器,再使用属性过滤器name=‘city‘,最后使用:checked选取被选中的元素。
2、给指定值的radio设置选中状态:
$("input[name=‘city‘][value=http://www.mamicode.com/‘YangZhou‘]").attr("checked",true);
给name="city"而且value="http://www.mamicode.com/YangZhou"的radio设置选中状态。
3、取消name="city"的radio的选中状态:
$(‘input[name="city"]:checked‘).attr("checked",false);
4、获取name="city"的radio的个数:
$("input[name=‘city‘]").length;
5、获取name="city"而且索引是偶数的radio:
$("input[name=‘city‘]:even");
索引是从0开始的。
6、获取name="city"而且索引是奇数的radio:
$("input[name=‘city‘]:odd");
索引是从0开始的。
7、迭代radio:
$("input[name=‘city‘]").each(function(i,obj){
//i,迭代的下标,从0开始
//obj,当前的对象(HTMLInputElement),可以使用obj.value格式获取属性值
//$(this);当前jQuery对象,可以使用$(this).val()获取属性值
});
迭代name="city"的radio。
8、禁用radio:
$("input[name=‘city‘]").attr("disabled",true);
禁用name="city"的radio。
9、启用radio:
$("input[name=‘city‘]").attr("disabled",false);
启用name="city"的radio。
jQuery操作<input type="radio">
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。