特定のオプションが選択されているときに、選択ボックスがある場合は入力ボックスを表示しようとしています。ここで選択ボックスの入力ボックスを開くjQuery
は私のコードです:
$("document").ready(function() {
$('input.other').hide();
$('#amount').change(function() {
// var val = $(this).find('option:selected').text();
//alert(val);
var selectedValue = $(this).find(":selected").val();
//alert(selectedValue);
if($(this).selectedValue == '25.00') {
// only if the radio button has a dob-field
$('input.other').show();// show only the following first
}
});
});
は、あなたの質問に手の込んだ –
コード内の多くのエラーがあります。これは '$(document).ready(function(){})'です。それは 'if($(this).selectedValue == '25 .00 ')'ではなく 'if(selectedValue == '25 .00')' ...そして '$( 'input.other')。 2行目で行ったことを否定します。 –
最初の文章を言い換えてみることができますか?現在の形ではそれほど意味をなさない。 –