使用上面 jsfiddle 中的代码,我无法使用 jQuery 取消隐藏和隐藏一行。根据this stack answer看来我这样做是正确的。
我有一些愚蠢的错误吗?可能导致这个?
代码:
$('input[name="custom_rejection_option"]').click(function() {
$('.custom_reject_area').toggle(this.checked);
}};
使用上面 jsfiddle 中的代码,我无法使用 jQuery 取消隐藏和隐藏一行。根据this stack answer看来我这样做是正确的。
我有一些愚蠢的错误吗?可能导致这个?
代码:
$('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);
});