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

Universal_(*) - 语法

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

$('*')

这是此选择器使用的所有参数的描述-

  • * -表示所有的元素。

Universal_(*) - 返回值

像任何其他jQueryselector一样,该选择器还返回一个填充有找到的元素的数组。

Universal_(*) - 示例

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

以下示例将选择所有元素,并将黄色应用于其背景。

<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>

这将产生以下输出-

This is first division of the DOM.

This is second division of the DOM.

This is third division of the DOM

参考链接

https://www.learnfk.com/jquery/selector-universal.html