jQuery API All Selector (*”)

All Selector (“*”)

jQuery("*")

警告: 除非被它自己使用,否则 * 选择器或通用选择器,其速度是极其慢的。

例子:

Example: 查找文档中的每一个元素(包括 head, body 等)。请注意,如果您的浏览器扩展/插件启用,插入一个<script>或<link>元素到DOM,该元素就会被计算。
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
 <script src="jquery-1.10.2.js"></script>
 <style>
 	h3{ margin:0;}
	div,span,p{ width:80px; height:40px; float:left; padding:10px; margin:10px; background:#EEE; }
 </style>
</head>

<body>
<div>DIV</div>
<span>span</span>
<p> p <button>Button</button></p>
<script>
	var elementCount = $("*").css("border","3px solid #0FF").length;
	$("body").prepend("<h3>" + elementCount + "elements found</h3>");
</script>
</body>
</html>
效果图:

Example: 查找document.body的所有元素 所以像head,script等元素被排除在外。
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
 <script src="jquery-1.10.2.js"></script>
 <style>
 	h3{ margin:0;}
	div,span,p{ width:80px; height:40px; float:left; padding:10px; margin:10px; background:#EEE; }
	#test{ width:auto; height:auto; background:transparent;}
 </style>
</head>

<body>
<div id="test">
	<div>DIV</div>
	<span>span</span>
	<p> p <button>Button</button></p>
</div>
<script>
	var elementCount = $("#test").find("*").css("border","3px solid #0FF").length;
	$("body").prepend("<h3>" + elementCount + "elements found</h3>");
</script>
</body>
</html>

效果图:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值