首页 > Web开发 > 详细

js实现的展开与收起1

时间:2017-02-27 21:51:27      阅读:172      评论:0      收藏:0      [点我收藏+]

1.slide.html内容如下

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<meta http-equiv="X-UA-Compatible" content="IE=edge">
	<title>slide</title>
	<link rel="stylesheet" href="slide.css">
</head>
<body>
	<div id="pn">
		<p>商品筛选</p>
		<p>网络:移动4G,联通3G,电信3G</p>
		<div id="hpn" style="display:none">
			<p>价格:5000</p>
			<p>
				特点....
			</p>
		</div>
	</div>
	<p class="slide"><a href="javascript:showDiv()" id="strHref" class="btn-slide">更多选项+</a></p>

	<script src="slide.js"></script>
</body>
</html>


2.slide.js内容如下

function showDiv(){
	document.getElementById("hpn").style.display = "block";
	document.getElementById("strHref").innerHTML = "收起-";
	document.getElementById("strHref").href = "javascript:hideDiv()";
}

function hideDiv(){
	document.getElementById("hpn").style.display = "none";
	document.getElementById("strHref").innerHTML = "更多选项+";
	document.getElementById("strHref").href = "javascript:showDiv()";
}


3.slide.css内容如下

body{
	margin: 0 auto;
	padding: 0;
}

#pn{
	background: #e8e8e8;
	width: 600px;
	display: block;
	margin: 0 auto;
	padding: 5px;
	font-size: 9pt;
	height: auto;
}

.slide{
	margin: 0 auto;
	padding: 0px;
	width: 600px;
	border-top:solid 4px gray;
}

.btn-slide{
	background: gray;
	width: 120px;
	height: 30px;
	text-align: center;
	margin: 0 auto;
	display: block;
	color: #fff;
	text-decoration: none;
	padding: 10px 0 0 0;
}


本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1901757

js实现的展开与收起1

原文:http://suyanzhu.blog.51cto.com/8050189/1901757

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!