jqueryで入力タイプ番号のフィールドデータに基づいて別のフィールドを表示するにはどうすればよいですか?
私は表示しないようにしています。子供のフィールドデータに基づいて提出された子供の年齢の。既定では、この子供はcssで隠されたボックスの年齢になります。いいえを表示したい。子供filed.Howに与えられたデータに基づいて、子の年齢ボックスの私はjQueryを使ってこれを行うことができますか?任意の提案は私に有用なはずである
年齢フィールドの1)コードの子フィールドの
<div class="yith-wcbk-form-section yith-wcbk-form-section-person-types">
<label for="yith-wcbk-booking-persons-type-390">
Child</label>
<input id="yith-wcbk-booking-persons-type-390" name="person_types[390]" class="yith-wcbk-booking-person-types yith-wcbk-number-minifield" step="1" min="0" max="4" data-person-type-id="390" value="" type="number">
</div>
は
2)コード(第一ageフィールド)
<div class="yith-wcbk-form-section yith-wcbk-form-section-person-types">
<label for="yith-wcbk-booking-persons-type-450">
1st age</label>
<input id="yith-wcbk-booking-persons-type-450" name="person_types[450]" class="yith-wcbk-booking-person-types yith-wcbk-number-minifield" step="1" min="0" max="12" data-person-type-id="450" value="" type="number">
</div>
3)が、これはJSそれは
jQuery('#yith-wcbk-booking-persons-type-390').change(function(){
if(jQuery(this).val() === '1') {
jQuery('#yith-wcbk-booking-persons-type-450').show();
}
if(jQuery(this).val() === '2') {
jQuery('#yith-wcbk-booking-persons-type-450').show();
jQuery('#yith-wcbk-booking-persons-type-451').show();
}
if(jQuery(this).val() === '3') {
jQuery('#yith-wcbk-booking-persons-type-450').show();
jQuery('#yith-wcbk-booking-persons-type-451').show();
jQuery('#yith-wcbk-booking-persons-type-452').show();
}
if(jQuery(this).val() === '4') {
jQuery('#yith-wcbk-booking-persons-type-450').show();
jQuery('#yith-wcbk-booking-persons-type-451').show();
jQuery('#yith-wcbk-booking-persons-type-452').show();
jQuery('#yith-wcbk-booking-persons-type-453').show();
}
});
に動作しませんでした使用されますは
はい、それは働いています知識共有のためのthanx – Abhee
ようこそ! – Liam