How do I get to cousin elements with JQuery?

前端 未结 4 1211
抹茶落季
抹茶落季 2020-12-31 04:35

I have a table with many rows of data, and I want to show or hide some of the details on each row based on a checkbox in the first element. For example:

<         


        
相关标签:
4条回答
  • 2020-12-31 04:45

    I am new to stackoverflow and I'm not sure if I can or not, but I edited the answer of @robjb and posting here. Full credit goes to him only.

    In case if anyone wants to select only particular cousins and not all cousins (i.e. wants to have selector), then we can use this modified version of @robjb 's answer. If selector is not passed as an argument then it will give all cousins.

    (function($) {
    $.fn.cousins = function(selector) {
        var cousins;
        this.each(function() {
            var auntsAndUncles = $(this).parent().siblings();
            auntsAndUncles.each(function() {
                if(cousins == null) {
                    if(selector)
                        cousins = auntsAndUncles.children(selector);
                    else
                        cousins = auntsAndUncles.children();
                }
                else {
                    if(selector)
                        cousins.add( auntsAndUncles.children(selector) );
                    else
                        cousins.add( auntsAndUncles.children() );
                }
            });
        });
        return cousins;
        }
    })(jQuery)
    

    Example use of the above function would be as

    $(clickedObj).cousins('.singleWheel');
    

    The other option would be to use .filter() and use @robjb's answer.

    0 讨论(0)
  • 2020-12-31 04:48

    Well have you tried:

    $(this).closest('tr').find('td:not(:first-child)')
    

    where "this" would be your checkbox element if the code were in a "click" handler or something.

    0 讨论(0)
  • 2020-12-31 04:50
    $('input[type=checkbox]').click(function() {
      $(this).closest('td').siblings().find('select,input').hide();
    });
    
    0 讨论(0)
  • 2020-12-31 05:02

    I know this is an old question, but I just stumbled across it and realized I recently wrote a generic function for this.

    Using the function below you could simply write $(this).cousins() to get a collection containing the text, select, and text-input elements (where this is of course your checkbox.)

    /* See http://addictedtonew.com/archives/414/creating-a-jquery-plugin-from-scratch/
     * Used like any other jQuery function:
     *        $( selector ).cousins()
     */
    (function($) {
        $.fn.cousins = function() {
            var cousins;
            this.each(function() {
                var auntsAndUncles = $(this).parent().siblings();
                auntsAndUncles.each(function() {
                    if(cousins == null) {
                        cousins = auntsAndUncles.children();
                    }
                    else cousins.add( auntsAndUncles.children() );
                });
            });
            return cousins;
        }
    })(jQuery)
    
    0 讨论(0)
提交回复
热议问题