gpt4 book ai didi

javascript - 仅当使用 jQuery 单击任何复选框时才应启用提交按钮

转载 作者:行者123 更新时间:2023-12-02 16:39:34 26 4
gpt4 key购买 nike

我面临以下问题;仅当单击任何复选框时才应启用提交按钮。使用 jQuery,我的代码是:

$(document).ready(function() {
var the_terms = $("#pricingTierId");
the_terms.click(function() {
if ($(this).is(":checked")) {
$("#submitBtn").removeAttr("disabled");
} else {
$("#submitBtn").attr("disabled", "disabled");
}
});
});
<c:if test="${fn:length(incentiveList) gt 0}">
<input type='button' name="submit" id = "submitBtn" value='Submit Incentives' onClick='execute();' />
</c:if>

但是在复选框代码中我有以下内容

<td>
<s:checkbox name="checkboxes[%{#stat.index}]" theme="simple" id="%{pricingTierId}"/>
</td>

我的 id 属性定义为 id="%{pricingTierId}" 所以我无法真正在 jQuery 函数中传递它,如上所示。请建议合适的方式

最佳答案

使用.prop()而不是.attr() 。从 jQuery 1.6 开始,.prop() 方法提供了一种显式检索属性值的方法,而 .attr() 则检索属性。

向复选框添加一个类,然后您可以使用该类(因为 OP 使用 struts2 cssClass)

<s:checkbox cssClass="yourClass" name="checkboxes[%{#stat.index}]" theme="simple" id="%{pricingTierId}"/>    

代码,您的代码也可以转换为单行

$('.yourClass').change(function() {
$("#submitBtn").prop("disabled", this.checked == false);
});

如果您有多个复选框且至少应选中一个

$('.yourClass').change(function() {
$("#submitBtn").prop("disabled", $('.yourClass').is(":checked") == false);
});

另请浏览.prop() vs .attr()

关于javascript - 仅当使用 jQuery 单击任何复选框时才应启用提交按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27618175/

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