獲取兄弟元素的方法

2022-05-22 06:18:14 字數 537 閱讀 4932

1.next();獲取的是當前元素的下乙個兄弟元素

$(this).next().css("backgroundcolor","green");

2.nextall();獲取的是當前元素的後面的所有的兄弟元素

$(this).nextall().css("backgroundcolor","green");

3.prev();獲取的是當前元素的前乙個兄弟元素

$(this).prev().css("backgroundcolor","green");

4.prevall();獲取的是當前元素的前面的所有的兄弟元素

$(this).prevall().css("backgroundcolor","green");

5.siblings();獲取的是當前元素的所有的兄弟元素

(自己除外

)

$(this).siblings().css("backgroundcolor","green");

ExtJS獲取父子 兄弟容器元素方法

1.當前物件的父物件 上級物件 this.ownerct 2.當前物件的下乙個相鄰的物件 this.nextsibling 3.當前物件的上乙個相鄰的物件 this.previoussibling 4.當前容器中的第乙個子物件 this.get 0 this.items.first 5.當前容器的最...

ExtJS獲取父子 兄弟容器元素方法

extjs獲取父子 兄弟容器元素方法 1.當前物件的父物件 上級物件 this.ownerct 2.當前物件的下乙個相鄰的物件 this.nextsibling 3.當前物件的上乙個相鄰的物件 this.previoussibling 4.當前容器中的第乙個子物件 this.get 0 this.i...

ExtJS獲取父子 兄弟容器元素方法

1.當前物件的父物件 上級物件 this.ownerct 2.當前物件的下乙個相鄰的物件 this.nextsibling 3.當前物件的上乙個相鄰的物件 this.previoussibling 4.當前容器中的第乙個子物件 this.get 0 this.items.first 5.當前容器的最...