启用或禁用基于单选按钮的按钮在jQuery中不起作用?

时间:2015-09-18 10:26:26

标签: javascript jquery

我用aspx文件写成

<asp:Button ID="btn" runat="server" Text="Add As a Sub Organization" OnClick="lnkChild_Click" ValidationGroup="GroupA" class="btn-u" CausesValidation="true" />

    <asp:GridView ID="grdDuplicateOrganisationList" AutoGenerateColumns="false" runat="server" CssClass="table"
            DataKeyNames="OrganisationId" GridLines="None">
            <Columns>
                <asp:TemplateField HeaderText="Organization">
                    <ItemTemplate>
                        <div style="text-align: left">
                            <asp:RadioButton runat="server" ID="rdoOrganisation" GroupName="Child" onclick="javascript:CheckOtherIsCheckedByGVID(this);"></asp:RadioButton>
                            <%# DataBinder.Eval (Container.DataItem, "Name") %>
                        </div>
                    </ItemTemplate>
                </asp:TemplateField>
                </columns>
             </asp:GridView>

    <script type="text/javascript">
// function alert() { return confirm("Your Message was sent successfully!") } $(function () { $("[data-toggle='popover']").popover() })



$(function () {
    if (!($('#<%= grdDuplicateOrganisationList.ClientID %> tr td').find('input:radio').is(':checked'))) {
                       $('#<%= btn.ClientID%>').attr('disabled', true).attr('title', 'Select organization then click...');
                   }
               });

               $('#<%= grdDuplicateOrganisationList.ClientID %> tr td').find('input:radio').on('change', function () {
    if ($(this).is(':checked')) {
        $('#<%= btn.ClientID%>').attr('disabled', false).attr('title', '');
                   } else {
        $('#<%= btn.ClientID%>').attr('disabled', true).attr('title', 'Select organization then click...');
                   }

            });

</script>

现在我想要如果用户点击单选按钮,那么应该启用btn。 上面的JavaScript不起作用。

1 个答案:

答案 0 :(得分:0)

我对asp没有任何想法,但问题是关于Jquery所以我可以帮助你

<input type="radio" name="toggle" value="1">Toggle

<script type="text/javascript">

   $("input[name=toggle]").on('click', function() {
   var checked = $("input[name=toggle]").prop('checked');
  console.log(checked);
   if(checked) { $("#yourbtnId").show();  } 
  else { $("#yourbtnId").hide(); }
</script>

https://jsfiddle.net/o5myvgp9/1/

修改

您也可以在dom ready

上进行设置
  $(function() {
        var checked = $("input[name=toggle]").prop('checked');
        console.log(checked);
        if(checked) { $("#yourbtnId").show();  } 
        else { $("#yourbtnId").hide(); }
  });