1

我看过这里并尝试了所有可用的答案,但它仍然不适合我。如果未选中复选框,我正在尝试禁用提交按钮。这是我的jQuery:

var userTerms = $('input#agree');
     if(userTerms.is(':checked')) {
        $("#aggtxt").addClass("err");
        $("#aggtxt").removeClass("error");
        $("#aggtxt").text(" Agreed");
        $("#bookit").attr('disabled', false);
        }else{
        $("#aggtxt").removeClass("err");
        $("#aggtxt").addClass("error");
        $("#aggtxt").text(" Please check terms and conditions box");
        $("#bookit").attr('disabled', true);
        }

         if ($('#bookit').is(':disabled') == true) { 
            $("#booktxt").removeClass("err");
            $("#booktxt").addClass("error");
            $("#booktxt").text(" Before you can submit this form please check the errors in form marked in red.");
            }else{
                $("#booktxt").addClass("err");
                $("#booktxt").removeClass("error");
                $("#booktxt").text(" Your information looks good, continue to booking...");
                }   
});

和我的 HTML 表单的一部分:

<p><span id="aggtxt"></span><br /><input type="checkbox" name="agree" id="agree" />  I agree to <a href="http://travel.ian.com/index.jsp?pageName=userAgreement&locale=en_US&cid=379849" target="_blank">Terms and Conditions</a> and understand Cancellation Policy.<p>
<span id="booktxt"></span>
<input type="submit" name="bookit" value="" class="bookit" id="bookit" />
4

3 回答 3

13

我对此的看法:

http://jsfiddle.net/bluz/peans/

希望这会有所帮助:) Paz。

于 2012-07-03T12:38:17.033 回答
2

试试这个:

$("#bookit").attr('disabled', 'disabled');

我试过这个:

<input type="checkbox" name="agree" id="agree" onclick="$('#bookit').attr('disabled', !$(this).is(':checked'));" />
    I agree to <a href="http://travel.ian.com/index.jsp?pageName=userAgreement&locale=en_US&cid=379849" target="_blank">Terms and Conditions</a> and understand Cancellation Policy.<p>

如果您取消选中该复选框,它会禁用该按钮。

于 2012-04-13T01:11:47.353 回答
0

试试这个:

if($('#agree').val() == 'true')

有关 jQuery文档的更多信息。

更正

is(':checked')方法仅在选中单选/复选框时返回。

于 2012-04-13T01:13:55.793 回答