我從下一步按鈕中刪除禁用的類,當兩個單選按鈕都被選中時,它工作正常,但問題是當我重新加載頁面時,兩個單選按鈕仍然被檢查但下一步中的禁用類不會觸發。無論如何,它使工作onload?jQuery檢測是否在加載時選擇了單選按鈕
<input class="SelectMarital" id="marital1" type="radio" name="marital" value="1"/>
<input class="SelectMarital" id="marital2" type="radio" name="marital" value="2"/>
<input class="SelectPrice" id="price1" type="radio" name="price" value="1"/>
<input class="SelectPrice" id="price2" type="radio" name="price" value="2"/>
<a href="#" id="salary" class="btn disabled">Next Step</a>
$("input[type=radio]").change(function(){
if($('.SelectMarital').is(':checked') && $('.SelectPrice').is(':checked')) {
$("#salary").removeClass('disabled');
}else {
$("#salary").addClass('disabled');
}
});
任何人都可以幫忙嗎?
使用PHP我是將其中一個單選按鈕設置爲選中狀態。 – Zain