-1

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

使用上面 jsfiddle 中的代码,我无法使用 jQuery 取消隐藏和隐藏一行。根据this stack answer看来我这样做是正确的。

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

代码:

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

2 回答 2

2

你有一个语法错误

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

});
//You had `}` instead of the closing `)`
于 2013-07-03T19:46:34.917 回答
2

你只是有一些错别字和东西。

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

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

于 2013-07-03T19:46:51.077 回答