jquery子元素过滤器
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
<meta charset="utf-8" />
<script src="jquery-3.3.1.js"></script>
<script>
$(function () {
$('#btn').click(function () {
//所有ul中的第一个li
//$('ul li:first-child').css('backgroundColor', 'yellow');
//$('ul li:last-child').css('backgroundColor', 'yellow');
//$('ul li:first').css('backgroundColor', 'yellow');
//$('ul li:last').css('backgroundColor', 'yellow');
})
})
</script>
</head>
<body>
<input type="button" name="name" value="btn" id="btn"/>
<ul>
<li>香蕉</li>
<li>西瓜</li>
<li>苹果</li>
<li>桔子</li>
<li>橙子</li>
</ul>
<hr color="gray"/>
<ul>
<li>篮球</li>
<li>排球</li>
<li>足球</li>
<li>羽毛球</li>
<li>乒乓球</li>
</ul>
</body>
</html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
<meta charset="utf-8" />
<script src="jquery-3.3.1.js"></script>
<script>
$(function () {
$('#btn').click(function () {
//所有ul中的第一个li
//$('ul li:first-child').css('backgroundColor', 'yellow');
//$('ul li:last-child').css('backgroundColor', 'yellow');
//$('ul li:first').css('backgroundColor', 'yellow');
//$('ul li:last').css('backgroundColor', 'yellow');
})
})
</script>
</head>
<body>
<input type="button" name="name" value="btn" id="btn"/>
<ul>
<li>香蕉</li>
<li>西瓜</li>
<li>苹果</li>
<li>桔子</li>
<li>橙子</li>
</ul>
<hr color="gray"/>
<ul>
<li>篮球</li>
<li>排球</li>
<li>足球</li>
<li>羽毛球</li>
<li>乒乓球</li>
</ul>
</body>
</html>