jQuery中的element ~ siblings选择器

jQuery中的element ~ siblings选择器

jQuery中的element ~ siblings选择器是用来选择所有指定元素的兄弟姐妹的。

语法:

("element ~ siblings")

参数:它包含上面提到的和下面描述的两个参数。

  • element。它是必要参数,用于任何有效的jQuery选择器。
  • siblings:这是必要参数,用于指定元素参数的兄弟姐妹。

示例 1:

<!DOCTYPE html>
<html>
<head>
  <title>
    jQuery element ~ siblings Selector
  </title>
</head>
<body style="text-align:center;">
  <h1 style="color:green;">
    GeeksforGeeks
  </h1>
  <h2>jQuery element ~ siblings Selector</h2>
  Geeks1
  <div>
    Geek2
    Geeks3
  </div>
  Geek4
  Geeks5
  <div>
    Geek6
  </div>
  <script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
  </script>
  <script>
    (document).ready(function () {
      ("div ~ p").css("background-color", "green");
    });
  </script>
</body>
</html>

输出:

jQuery中的element ~ siblings选择器

示例 2:

<!DOCTYPE html>
<html>
<head>
  <title>
    jQuery element ~ siblings Selector
  </title>
</head>
<body style="text-align:center;">
  <h1 style="color:green;">
    GeeksforGeeks
  </h1>
  <h2>jQuery element ~ siblings Selector</h2>
  Geeks1
  <div>
    Geek2
    Geeks3
  </div>
  Geek4
  Geeks5
  <div>
    Geek6
  </div>
  <script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
  </script>
  <script>
    (document).ready(function () {
      ("p ~ div").css("border", "2px solid red");
    });
  </script>
</body>
</html>

输出:

jQuery中的element ~ siblings选择器

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程