本文介绍了单击复选框后选择单选按钮的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是我的代码,但它不起作用



我有Radiobutton id id

ID =RadioSecC1

我希望点击复选框



我有另一个Radiobutton ID是

id =RadioTier2Act1

如果我选择了前一个,如果之前没有选择,那么应该选择它,然后第二个保持未被选中

This is my code but its not working

I have Radiobutton id id
ID="RadioSecC1"
I want that on clicking on checkbox

I have another Radiobutton id is
id="RadioTier2Act1"
it should be selected if i have selected previous one and if earlier is not selected then second one remain unselected

$('#<%=ChkSameAstier1.ClientID%>').on("click", function () {

              if ($(this).is(":checked")) {
                  var Rdb1 = $('#<%=RadioSecC1.ClientID %>').val();
                  $('#<%=RadioTier2Act1.ClientID %>').val(Rdb1);

推荐答案




这篇关于单击复选框后选择单选按钮的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-13 14:25