0

我正在尝试切换特定的元素选择。我想根据选择隐藏元素,然后显示那些完全相同的元素。我尝试使用此代码,但行不“显示”,因为它似乎重新检查哪些是可见的。

jQuery(function($){
        $('input[id^=_cmb_api_use_defaults_]').click(function(){
                var $rows = $(this).parents('tr:first').nextAll('tr:visible');
                if($(this).is(':checked')){
                        $rows.hide();
                } else {
                        $rows.show();
                }
        });
});

如何存储这些特定元素,以便以后可以操作完全相同的表行?

4

1 回答 1

0

只需使用在函数外部声明的变量:

jQuery(function($){
        $('input[id^=_cmb_api_use_defaults_]').each(function(i, input) {
            var $rows = $(input).parents('tr:first').nextAll('tr:visible');
            $(input).click(function() {
                    if($(this).is(':checked')){
                            $rows.hide();
                    } else {
                            $rows.show();
                    }
            });
        });
});
于 2013-01-24T21:33:37.187 回答