jQuery 中的 通用符 (*)函数

首页 / jQuery入门教程 / jQuery 中的 通用符 (*)函数

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

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

祝学习愉快!(内容编辑有误?请选中要编辑内容 -> 右键 -> 修改 -> 提交!)

技术教程推荐

机器学习40讲 -〔王天一〕

程序员进阶攻略 -〔胡峰〕

玩转webpack -〔程柳锋〕

Elasticsearch核心技术与实战 -〔阮一鸣〕

分布式协议与算法实战 -〔韩健〕

图解 Google V8 -〔李兵〕

小马哥讲Spring AOP编程思想 -〔小马哥〕

大厂广告产品心法 -〔郭谊〕

Go进阶 · 分布式爬虫实战 -〔郑建勋〕

好记忆不如烂笔头。留下您的足迹吧 :)