上記のフィールドがあります。少なくとも1つは0より大きい値を入力するように要求したいのですが、テーブルとシートを含めることもできます。
私のHTML:
<div class="form-row reserve">
<input type="text" name="tables" id="tables" value="0"/>
<label for="tables">corporate tables (10 seats) @ $1,950 each and/or</label>
</div>
<div class="form-row reserve">
<input type="text" name="individual" id="individual" value="0"/>
<label for="individual">individual seats @ $225 each</label>
</div>
私はこれを試しましたが、機能していないようです:
tables: {
required: function(element){
return $("#individual").val() == 0;
}
},
individual: {
required: function(element){
return $("#tables").val() == 0;
}
}
どんな助けでもいただければ幸いです。