次のステップのボタンから無効なクラスを削除します。両方のラジオボタンがオンになっていれば正常ですが、ページをリロードするとラジオボタンはチェックされたままです次のステップで無効になったクラスはトリガされません。それを作業負荷にするためにとにかくありますか?ロード時にラジオボタンが選択されていると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');
}
});
誰でも手助けできますか?
ラジオボタンの1つを選択して設定します。 – Zain