gpt4 book ai didi

jquery - 什么是简单的 jquery 方法来在选中复选框时选择 radio ,然后在取消选中复选框时取消选择 radio ?

转载 作者:行者123 更新时间:2023-11-30 23:58:49 25 4
gpt4 key购买 nike

<input id="myCheckbox" type="checkbox" /> Please, please check me
<input id="myRadio" type="radio" /> Am I selected ?

我想要以下行为:

  1. 当 myCheckbox 被选中时,myRadio 将被选中。
  2. 当 myCheckbox 未被选中时,myRadio 将被取消选中。

我如何以一种非常简单的方式做到这一点?

预先感谢您为回复所做的努力。

最佳答案

$('#myCheckbox').click(function() {
if ($(this).is(':checked')) {
$('#myRadio').attr('checked', 'checked');
} else {
$('#myRadio').removeAttr('checked');
}
});

关于jquery - 什么是简单的 jquery 方法来在选中复选框时选择 radio ,然后在取消选中复选框时取消选择 radio ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1269349/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com