parent()是 父元素 就一个,你要选取class=x的元素,就是第一个p元素的父元素的父元素:
$("p:eq(0)")parent()parent()css("background", "yellow");
或者p元素父元素的父元素类为x的元素:
$("p")parent()parent("x")css("background", "yellow");
或者p元素祖先元素(祖先就很多个了)中类为x的元素:
$("p")parents("x")css("background", "yellow");
$("#父窗口元素ID",windowparentdocument); 对应javascript版本为windowparentdocumentgetElementByIdx_x("父窗口元素ID");
取父窗口的元素方法:$(selector, windowparentdocument);
那么你取父窗口的父窗口的元素就可以用:$(selector, windowparentparentdocument);
类似的,取其它窗口的方法大同小异
$(selector, windowtopdocument);
$(selector, windowopenerdocument);
$(selector, windowtopframes[0]document);
$("depth etc")each(function(i) {
var obj[i] = $(this)children("dd[id!='man_2']");
});
这样数组obj中就存储了你要的那个<dd>了 。
可以使用jQuery的children方法来获取某个元素下的所有子元素。如果给定表示 DOM 元素集合的 jQuery 对象,children() 方法允许我们检索 DOM 树中的这些元素,并用匹配元素构造新的 jQuery 对象。find() 和 children() 方法类似,不过后者只沿着 DOM 树向下遍历单一层级。
工具原料:编辑器、浏览器
1、使用children方法可以获得选择器下的所有子元素,代码实例如下:
<!DOCTYPE html><html>
<head>
<script type="text/javascript" src="/jquery/jqueryjs"></script>
<style>
body { font-size:16px; font-weight:bolder; }
p { margin:5px 0; }
</style>
</head>
<body>
<div>
<span>Hello</span>
<p class="selected">Hello Again</p>
<div class="selected">And Again</div>
<p>And One Last Time</p>
</div>
<script>$("div")children("selected")css("color", "blue");</script>
</body>
</html>
2、运行的结果是找到类名为 "selected" 的所有 div 的子元素,并将其设置为蓝色,结果如下:
jquery中parent()可以获取父级元素,所以获得某元素父级的父级可以使用
$(selector)parent()parent();示例如下
创建Html代码及css样式
<div class="class1">class1
<div class="class2">
class2
<div class="class3">
class3
</div>
</div>
</div>div{padding:10px 20px;border:4px solid #ebcbbe;}
divclass1{width:200px;height:120px;}
编写jquery代码
$(function(){$("divclass3")click(function() {
obj = $(this)parent()parent();
alert(objprop('class'));
});
})
查看效果
以上就是关于jquery如何获得父级的父级元素全部的内容,包括:jquery如何获得父级的父级元素、如何用jquery 获取父窗口的input、JQUERY选择器,选取除了此ID外父元素中所有的元素等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)