JQuery中基本选择器

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" lang="en">

	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
		<script src="js/jquery-1.12.1.js"></script>
		<script type="text/javascript">
			$(function() {
				//基本选择器
				//1. * 代表所有的选择器
				//				$("*").css("border", "1px solid red");
				//2. .class表示类选择器
				//				$(".astyle").css("border", "1px solid red")
				//3. #id 表示id选择器 = getElementById("id")
				//				$("#li3").css("border", "1px solid red");
				//4. $("div") 元素选择器
				$("li").css("border", "1px solid red");
			});
		</script>
	</head>

	<body>
		<ul>
			<li>1. <a href="http://localhost">超链接1</a></li>

			<li>2. <a href="www.baidu.com">超链接2</a></li>

			<li id="li3">3. <a href="#">超链接3</a></li>

			<li>4. <a href="#" class="astyle">超链接4</a></li>
		</ul>
		<div>
			<textarea rows="2" cols="2"></textarea>
			<input />

		</div>
	</body>

</html>

  • 0
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值