码迷,mamicode.com
首页 > Web开发 > 详细

最近的一些零碎知识点,jquery遍历

时间:2018-05-11 23:24:17      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:nbsp   back   isa   之间   html   next   this   方法   sibling   

1.使按钮无法点击

¥(“#btn”).attr("disable",true);

2.返回上一个页面

history.back(-1);

3.$(this).siblings()

查找每个 p 元素的所有类名为 "selected" 的所有同胞元素:

$("p").siblings(".selected")

4.$(this).parent()

parent() 方法返回被选元素的直接父元素。

5.$(this).parents()

parents() 方法返回被选元素的所有祖先元素,它一路向上直到文档的根元素 (<html>)。

6.$(this).parentsUtil()

parentsUntil() 方法返回介于两个给定元素之间的所有祖先元素。

7.$(this).children()

children() 方法返回被选元素的所有直接子元素。

8.$(this).find()

find() 方法返回被选元素的后代元素,一路向下直到最后一个后代。

9.$(this).next()

next() 方法返回被选元素的下一个同胞元素。

10.$(this).nextAll()

nextAll() 方法返回被选元素的所有跟随的同胞元素。

11.$(this).nextUtil()

nextUntil() 方法返回介于两个给定参数之间的所有跟随的同胞元素。

 

 

 

 

 

 

 

 

 

 

 


最近的一些零碎知识点,jquery遍历

标签:nbsp   back   isa   之间   html   next   this   方法   sibling   

原文地址:https://www.cnblogs.com/JaniceDong/p/9026491.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!