当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JQuery siblings()用法及代码示例


siblings()是一个内置方法jQuery用于查找所选元素的所有兄弟元素。兄弟元素是指在 DOM 树中具有相同父元素的元素。这DOM(文档对象模型)是万维网联盟标准。这是为了访问 DOM 树中的元素而定义的。

用法:

$(selector).siblings(function)

这里,选择器是要找到其兄弟元素的选定元素。

参数:它接受一个可选参数“function”,该参数将说明应该从所有兄弟姐妹中选择哪些兄弟姐妹。

返回值:它返回所选元素的所有同级元素。

显示 siblings() 函数工作原理的 jQuery 代码:

示例 1:在下面的代码中,没有参数传递给siblings()函数。

html


<!DOCTYPE html>
<html>
<head>
    <style>
        .sib * {
            display: block;
            border: 2px solid lightgray;
            color: black;
            padding: 5px;
            margin: 15px;
        }
    </style>
    <script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
    </script>
    <script>
        $(document).ready(function () {
            $("h2").siblings().css({
                "color": "black",
                "border": "2px solid green"
            });
        });
    </script>
</head>
<body class="sib">
    <div>
        This is parent!!!
        <p>This is paragraph!!!</p>
        <span>This is span box!!!</span>
        <h2>This is heading 2!</h2>
        <h3>This is heading 3!</h3>
    </div>
</body>
</html>

输出:在上面的代码中,“h2” 的所有同级都被突出显示。

示例 2:在下面的代码中,该函数的可选参数用于过滤对同级的搜索。

html


<!DOCTYPE html>
<html>
<head>
    <style>
        .sib * {
            display: block;
            border: 2px solid lightgrey;
            color: black;
            padding: 5px;
            margin: 15px;
        }
    </style>
    <script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
    </script>
    <script>
        $(document).ready(function () {
            $("h2").siblings("span").css({
                "color": "black",
                "border": "2px solid green"
            });
        });
    </script>
</head>
<body class="sib">
    <div>
        This is parent element !
        <p>
            This is the first paragraph !!!
        </p>
        <span>
            first span box !!!
        </span>
        <h2>Heading 2!</h2>
        <span>
            second span box !!!
        </span>
        <h3>Heading 3!</h3>
        <span>
            third span box !!!
        </span>
        <p>
            This is the second paragraph !!!
        </p>
    </div>
</body>
</html>

输出:在上面的代码中,元素名称为 “span” 的 “h2” 的所有同级元素都被选中。



相关用法


注:本文由纯净天空筛选整理自kundankumarjha大神的英文原创作品 jQuery siblings() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。