parent([expr]) :取得一个包含着所有匹配元素的唯一父元素的元素集合。
parents([expr]) :取得一个包含着所有匹配元素的祖先元素的元素集合(不包含根元素)。
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<script src="js/jquery-3.3.1.js"></script>
</head>
<body>
<div>
<a id="link" href="http://www.baidu.com">百度</a>
</div>
<script>
//这里的parent在控制台中只会输出包裹a。标签的div标签,如果这里是parents则控制台则返回div标签、body标签和html标签这三个标签组成的一个数组
console.log($("#link").parent()[0]);
console.log($("#link").parents().each(function (){
console.log(this);
}));
</script>
</body>
</html>