我試圖禁用頁面加載時的訂單按鈕,並在檢查條款和條件複選框時啓用它。我有它工作的地方訂單按鈕被禁用時頁面加載,但點擊複選框的按鈕不啓用。這是我的代碼。誰能幫我找出問題需要啓用/禁用單擊複選框上的按鈕
<input type="checkbox" id="checkbox1" name="checkbox1" class="required" />Please read the <a href="#">Terms and Conditions</a>
jQuery代碼
var j$ = jQuery.noConflict();
j$(document).ready(function(){
alert("Hi");
if(j$('input[name="checkbox1"]').not(":checked"))
{
j$('input[name="Order"]').attr('disabled', 'disabled');
}
else
{
j$('input[name="Order"]').removeAttr('disabled');
}
j$('#checkbox1').change(function(){
if(j$('input[name="checkbox1"]').is(":checked")
{
j$('input[name="Order"]').attr('disabled', 'disabled');
}
else
{
j$('input[name="Order"]').removeAttr('disabled');
}
}
});
感謝
Prady