1 Star 0 Fork 0

Lee1212/jQuery

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
input.html 1.83 KB
一键复制 编辑 原始数据 按行查看 历史
Administrator 提交于 2017-08-09 09:16 . yy
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style>
ul,
li {
list-style: none;
margin: 0px;
padding: 0px;
font-size: 24px;
}
li {
width: 150px;
height: 50px;
background-color: greenyellow;
border: 2px solid brown;
text-align: center;
line-height: 40px;
margin: 10px;
}
li a{
color:red;
background-color: yellow;
}
</style>
</head>
<body>
<!--ul>(li>a[href=#]{列表$})*5-->
<ul id="value1" class="dl">
<li><a href="#">列表1</a></li>
<li><a href="#">列表2</a></li>
<li><a href="#">列表3</a></li>
<li><a href="#">列表4</a></li>
<li><a href="#">列表5</a></li>
<li><a href="#">列表6</a></li>
<li><a href="#">列表7</a></li>
<li><a href="#">列表8</a></li>
<li><a href="#">列表9</a></li>
<li><a href="#">列表10</a></li>
</ul>
<div title="test">11</div>
<div title="test1">22</div>
<div title="aa">33</div>
<div title="ccte">44</div>
<div title="nest">55</div>
<div title="test3">66</div>
<div title="mest" id="b">77</div>
<div title="test1" id="a">88</div>
<script src="js/jquery.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
/*var chds = $("#menul :nth.child(2n)");
$chds.each(function(i, ele) {
console.log(i, ele);
});
$(function() {
$("ul").each(function() {
var y = $(this).children().last();
alert(y.text());
});
});*/
$("div[title]").css("color","red");
$("div[title='test']").css("border","1px solid yellow");
$("div[title!='test']").css("font-size","70px");
("div[title^='te']").css("background","green");
("div[title$='est']").css("cursor", "pointer");
("div[title*='es']").css("text-align","center");
("div[id][title*='es']").css("background","red");
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/smile12/jQuery.git
git@gitee.com:smile12/jQuery.git
smile12
jQuery
jQuery
master

搜索帮助