parent([selector] )
优质
小牛编辑
128浏览
2023-12-01
描述 (Description)
parent( [selector] )方法获取元素的直接父级。 如果在一组元素上调用,则parent返回一组唯一的直接父元素。
语法 (Syntax)
以下是使用此方法的简单语法 -
<i>selector</i>.parent( [selector] )
参数 (Parameters)
以下是此方法使用的所有参数的说明 -
selector - 这是用于过滤父级的可选选择器。
例子 (Example)
以下是一个简单的示例,简单地显示了此方法的用法。
<html>
<head>
<title>The jQuery Example</title>
<script type = "text/javascript"
src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js">
</script>
<script type = "text/javascript" language = "javascript">
$(document).ready(function(){
$("p").parent().addClass('hilight');
});
</script>
<style>
.hilight { background:yellow; }
</style>
</head>
<body>
<scan>Top Element</scan>
<div>
<div>sibling<div>child</div></div>
<p>sibling</p>
<scan>sibling</scan>
</div>
</body>
</html>
例子 (Example)
以下是一个简单的示例,简单地显示了此方法的用法。
<html>
<head>
<title>The jQuery Example</title>
<script type = "text/javascript"
src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js">
</script>
<script type = "text/javascript" language = "javascript">
$(document).ready(function(){
$("p").parent().addClass('hilight');
});
</script>
<style>
.hilight { background:yellow; }
</style>
</head>
<body>
<scan>Top Element</scan>
<div class = "hilight">
<div>sibling<div>child</div></div>
<p>sibling</p>
<scan>sibling</scan>
<div>
</body>
</html>