博客列表 >tab切换3-27

tab切换3-27

moonheart的博客
moonheart的博客原创
2019年03月28日 13:59:48687浏览

实例

实例
<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<title>javaScript-tab切换-学号:56090</title>
	<style type="text/css">
	*{margin: 0px;padding: 0px;}	
	li{list-style: none;}
	.clear{clear: both;}
	.tab{
		width: 600px;
		height: 300px;
		margin: 50px auto;
	}
	#tab_list{
		height: 40px;
		line-height: 40px;
		text-align: center;
		font-family: '微软雅黑';
		border-bottom: none;
	}
	#tab_list li{
		float: left;
		border: 1px solid #000;
		border-right: none;
		width: 100px;
		border-top-right-radius: 8px;
		border-top-left-radius: 8px;
		z-index: 999;
		cursor: pointer;
	}
	#tab_list li:last-of-type{
		border-right:1px solid #000;
	}
	#tab_content li{
		width: 600px;
		height: 300px;
		border:1px solid #000;
		text-align: center;
		line-height: 300px;
		margin-top: -2px;
	}
	</style>
</head>
<body>
<div class="tab">
	<ul id="tab_list">
		<li onclick="getTab(0);"style="background: #dbd0d6;	border-bottom: none;">tab1</li>
		<li onclick="getTab(1);" style="background: #ccc;">tab2</li>
		<li onclick="getTab(2);" style="background: #ccc;">tab3</li>
		<li onclick="getTab(3);" style="background: #ccc;">tab4</li>		
	</ul>
	<div class="clear"></div>
	<ul id="tab_content">
		<li style="background: #dbd0d6;">我是tab1的内容</li>
		<li style="display: none;background-color: burlywood;">我是tab2的内容</li>
		<li style="display: none;background-color: mediumaquamarine;">我是tab3的内容</li>
		<li style="display: none;background-color: cornflowerblue;">我是tab4的内容</li>		
	</ul>
	<div class="clear"></div>
</div>
<script type="text/javascript">
function getTab(num){
	var colorArr=new Array("#dbd0d6","burlywood","mediumaquamarine","cornflowerblue");
	var tab=document.getElementById('tab_list');
	var tab_list=tab.getElementsByTagName('li');
	var content=document.getElementById('tab_content');
	var content_list=content.getElementsByTagName('li');
	for(var i=0; i<content_list.length;i++){document.getElementById
		content_list[i].style.display="none";
	}tab_content
	content_list[num].style.display="block";
	content_list[num].style.background=colorArr[num];
	for(var i=0;i<tab_list.length;i++){
		tab_list[i].style.background="#ccc";
		tab_list[i].style.borderBottom="1px solid #000";
	}
	tab_list[num].style.background=colorArr[num];
	tab_list[num].style.borderBottom="none";
	//"1px solid "+colorArr[num];
}	
</script>

</body>
</html>
运行实例 »
点击 "运行实例" 按钮查看在线实例

运行实例 »

点击 "运行实例" 按钮查看在线实例

微信截图_20190328135927.png微信截图_20190328135608.png

上一条:sing 签名验证下一条:轮播切换3-27
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议