jQuery学习笔记——jQuery选择器练习




	
		
		
		 
		
		
		
	
	
		

default.css

* {
	margin: 0;
	padding: 0;
}

body {
	font-size: 12px;
	text-align: center;
}

a {
	color: #04D;
	text-decoration: none;
}

a:hover {
	color: #F50;
	text-decoration: underline;
}

.SubCategoryBox {
	width: 600px;
	margin: 0 auto;
	text-align: center;
	margin-top: 40px;
}

.SubCategoryBox ul {
	list-style: none;
}

.SubCategoryBox ul li {
	display: block;
	float: left;
	width: 200px;
	line-height: 20px;
}

.showmore {
	clear: both;
	text-align: center;
	padding-top: 10px;
}

.showmore a {
	display: block;
	width: 120px;
	margin: 0 auto;
	line-height: 24px;
	border: 1px solid #AAA;
}

.showmore a span {
	padding-left: 15px;
	background: url(../img/down.gif) no-repeat 0 0;
}

.promoted a {
	color: #F50;
}
运行结果:

jQuery学习笔记——jQuery选择器练习_第1张图片

单击显示全部品牌

jQuery学习笔记——jQuery选择器练习_第2张图片

点击精简显示品牌后,恢复到第一张图

你可能感兴趣的:(jQuery)