根据ID在jquery中设置单选按钮'checked' [英] Set radio button 'checked' in jquery based on ID

查看:23
本文介绍了根据ID在jquery中设置单选按钮'checked'的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有两个同名的单选按钮,默认选中一个.从 id 中选择时如何在 jQuery 中选中或取消选中单选按钮?

I have two radio buttons with the same name, one is checked by default. How can you check or uncheck a radio button in jQuery when selecting from id?

我试过了:

$('#radio1').attr('checked','checked');
$('#radio1').attr('checked', true);

似乎没有任何效果..有什么想法吗?

Nothing seems to work.. any ideas?

谢谢!

推荐答案

您不能多次拥有相同的 id (#radio1),请改用 class.

You can not have same id (#radio1) more than once, use a class instead.

$('.radio1').attr('checked', true);
$('.radio2').attr('checked', true);

id 应该在每个页面的每个元素中使用一次.

The id should be used once per element per page.

如果你想在 click 上勾选/取消勾选,你可以这样做:

If you want to check/uncheck on click however, you may do like:

$('#someid').click(function(){
  $('#radio1').attr('checked', true);
});

或者

$('#someid').click(function(){
  $('#radio1').attr('checked', this.checked);
});

这篇关于根据ID在jquery中设置单选按钮'checked'的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆