jquery中的查找parents与closest方法之间的区别
一、返回值 前者可以返回多个元素 或者只能返回0个或者1个
二、停止的时间不同 前者是所有的上级元素即一直到根一般是body 后者是知道发现为止,发现一个就停止了
三、开始的元素不同 前者是从父元素开始 后者是从自身开始的
代码如下:
. 代码如下:
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "https://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<title>查找父元素</title>
<script src="scripts/jquery-1.4.1.js" type="text/javascript"></script>
</head>
<body>
<p class="dilass" id="p1" style="width:300px;height:150px;">
<p style="width:200px;height:100px; margin-top:10px;margin-left:30px;">
<p>
给祖先添加边框
</p>
</p>
</p>
</body>
</html>
<script>
$("p").closest("p[id='p1']").css("border", "1px solid blue");
</script>
可以试着把closest改成parents。
上一篇: JavaScript开发jquery对ajax的支持介绍
下一篇: iOS APP签名机制原理详解
推荐阅读
-
深入理解jQuery中live与bind方法的区别
-
jquery中的查找parents与closest方法之间的区别
-
jQuery中bind,live,delegate与one方法的用法及区别解析
-
jQuery向上遍历DOM树之parents(),parent(),closest()之间的区别
-
Jquery中children与find之间的区别详细解析
-
jQuery中操作属性的方法attr与prop的区别
-
jQuery中bind,live,delegate与one方法的用法及区别解析
-
深入理解jQuery中live与bind方法的区别
-
jQuery向上遍历DOM树之parents(),parent(),closest()之间的区别_jquery
-
jQuery向上遍历DOM树之parents(),parent(),closest()之间的区别