1 Star 0 Fork 0

龚贤/jquery_space

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
选择器-基本筛选器.html 1.24 KB
一键复制 编辑 原始数据 按行查看 历史
龚贤 提交于 2020-11-15 16:39 . 第一个版本
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>标题</h1>
<ul>
<li>000</li>
<li>111</li>
<li>222</li>
<li>333</li>
<li>444</li>
</ul>
<a href="#home">首页</a>
<a href="#about">关于</a>
<p id="home">首页内容</p>
<p id="about">关于内容</p>
<script src="js/jquery3.5.js"></script>
<script>
// $('li:first').css('color','red'); //第一个
// $('li:last').css('color','red'); //最后一个
// $('li:not(:first)').css('color','red'); //除掉第一个
// $('li:eq(1)').css('color','red'); //指定索引的,从0
// $('li:not(:eq(1))').css('color','red');//除掉第2个
// $('li:even').css('color','red'); //偶数的,从0
// $('li:odd').css('color','red'); //奇数的,从0
// $('li:gt(2)').css('color','red'); //大于索引值2的所有
// $('li:lt(2)').css('color','red'); //小于索引值2的所有
// $(':header').css('color','red');//专门用于匹配h1-h6
setTimeout(_=>{
$( "p:target" ).css('color','red'); //它和地址栏中的hash有关,当hash是 #home,那么它找的对象是p id等于home
},0)
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gx0513/jquery_space.git
git@gitee.com:gx0513/jquery_space.git
gx0513
jquery_space
jquery_space
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385