使用上面jsfiddle中的代码我无法使用jQuery取消隐藏和隐藏行。根据这个stack答案,我似乎正确地做到了这一点。
我有一些愚蠢的错误吗?可能导致这个?
代码:
$('input[name="custom_rejection_option"]').click(function() {
$('.custom_reject_area').toggle(this.checked);
}};
答案 0 :(得分:2)
$('input[name="custom_rejection_option"]').click(function () {
$('.custom_reject_area').toggle(this.checked);
});
//You had `}` instead of the closing `)`
答案 1 :(得分:2)
你刚收到一些拼写错误。
$('input[name=custom_rejection_option]').click(function() {
$('.custom_reject_area').toggle(this.checked);
});