目录

Universal (*)

描述 (Description)

通用选择器选择文档中可用的所有元素。

语法 (Syntax)

以下是使用此选择器的简单语法 -

$('*')

参数 (Parameters)

以下是此选择器使用的所有参数的说明 -

  • * - 一个象征性的明星。

返回值 (Returns)

与任何其他jQuery选择器一样,此选择器也返回一个填充了found元素的数组。

例子 (Example)

  • $('*')选择文档中的所有可用元素。

下面的示例将选择所有元素,并将黄色应用于其背景。 试着理解这个选择器会选择包括头部,身体等在内的每个元素。

<html>
   <head>
      <title>The Selecter 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() {
            /* This would select all the elements */
            $("*").css("background-color", "yellow");
         });
      </script>
   </head>
   <body>
      <div class = "big" id = "div1">
         <p>This is first division of the DOM.</p>
      </div>
      <div class = "medium" id = "div2">
         <p>This is second division of the DOM.</p>
      </div>
      <div class = "small" id = "div3">
         <p>This is third division of the DOM</p>
      </div>
   </body>
</html>

这将产生以下结果 -

新页面打开
↑回到顶部↑
WIKI教程 @2018