gpt4 book ai didi

javascript - 选择单选按钮时启用单击按钮

转载 作者:行者123 更新时间:2023-12-02 17:08:29 25 4
gpt4 key购买 nike

我有一个由 ListView 动态生成的单选按钮列表。用户选择一个单选按钮并单击“更新”按钮来更新其数据。我想保持按钮禁用,直到用户做出选择。我怎样才能做到这一点?

<asp:ListView ID="ListView1" runat="server" DataKeyNames="ID_BG" DataSourceID="SqlDataSource_BGlist">
<ItemTemplate>
<itemtemplate>
<label><input id="Radio1" name="BG_list" type="radio" runat="server" value='<%# Eval("BG_fileName") %>'/>
<img alt="" style="width:150px" src="/Members/images/BG/icons/<%# Eval("BG_fileName") %>"></label>
</itemtemplate> ....



<asp:Button disabled="disabled" CssClass="btn btn-default" ID="UpdateButton" runat="server" CausesValidation="True" CommandName="Update" Text="Change" OnClientClick="return confirm('Are you sure you want to change your Background Image?');" />

最佳答案

再见格洛丽亚,

您应该添加 jQuery,然后在 header 中添加这段代码:

$(function () {
$("input[id*='Radio1']").click(function () {
$("#<%=UpdateButton.ClientID %>").removeAttr('disabled');
});
});

让 ASP.NET 取代 <%=UpdateButton.ClientID %>使用控件的实际 ID,您必须将 head 启用为服务器端控件,否则 ASP.NET 将不会检查 <head> 的内容既不嵌套<script>标签:

<head runat="server">
<script>

// server-side variant JS with ASP.NET <%= tags %>

</script>
</head>

有关此主题的更多信息:Understanding the runat server attribute

关于javascript - 选择单选按钮时启用单击按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25034756/

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