使用jQuery切换取消隐藏行

时间:2013-07-03 19:43:48

标签: javascript jquery html row

http://jsfiddle.net/PF8nL/1/

使用上面jsfiddle中的代码我无法使用jQuery取消隐藏和隐藏行。根据这个stack答案,我似乎正确地做到了这一点。

我有一些愚蠢的错误吗?可能导致这个?

代码:

$('input[name="custom_rejection_option"]').click(function() {
    $('.custom_reject_area').toggle(this.checked);
}};

2 个答案:

答案 0 :(得分:2)

You had a syntax error

$('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);
});

http://jsfiddle.net/PF8nL/5/