上記の jsfiddle のコードを使用すると、jQuery を使用して行を表示および非表示にすることができません。このスタックの回答によると、私はこれを正しく行っているようです。
愚かなエラーがありますか?おそらくこれを引き起こしていますか?
コード:
$('input[name="custom_rejection_option"]').click(function() {
$('.custom_reject_area').toggle(this.checked);
}};
上記の jsfiddle のコードを使用すると、jQuery を使用して行を表示および非表示にすることができません。このスタックの回答によると、私はこれを正しく行っているようです。
愚かなエラーがありますか?おそらくこれを引き起こしていますか?
コード:
$('input[name="custom_rejection_option"]').click(function() {
$('.custom_reject_area').toggle(this.checked);
}};
$('input[name="custom_rejection_option"]').click(function () {
$('.custom_reject_area').toggle(this.checked);
});
//You had `}` instead of the closing `)`
タイプミスとか色々ありましたね。
$('input[name=custom_rejection_option]').click(function() {
$('.custom_reject_area').toggle(this.checked);
});