<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>选项卡</title>
<style type="text/css">
*{margin: 0;padding: 0;}
#div1{
margin: 0 auto;
width: 800px;
height: 300px;
border: 1px solid black;
}
#div1 .div2{
width: 800px;
height: 70px;
display: block;
}
#div1 .div2 input{
margin: 0 1px;
border: none;
display: block;
width: 194px;
height: 70px;
float: left;
outline: none;
}
#div1 .div2 .active{
background-color: white;
}
#div1 div{
display: none;
}
</style>
<script type="text/javascript">
window.onload=function()
{
var oDiv=document.getElementById('div1')
var oBtn=document.getElementsByTagName('input');
var aDiv=oDiv.getElementsByTagName('div');
for(var i=0;i<oBtn.length;i++)
{
oBtn[i].index=i;
oBtn[i].onclick=function()
{
for(var i=0;i<oBtn.length;i++)
{
oBtn[i].className='';
aDiv[i+1].style.display='none';
}
this.className='active';
aDiv[this.index+1].style.display='block';
}
}
};
</script>
</head>
<body>
<div id="div1">
<div class="div2">
<input type="button" name="" id="" value="我的博客" class="active"/>
<input type="button" name="" id="" value="我的知识" />
<input type="button" name="" id="" value="我的动态" />
<input type="button" name="" id="" value="我的资料" />
</div>
<div style="display: block;">我的博客</div>
<div >我的知识</div>
<div >我的动态</div>
<div >我的资料</div>
</div>
</div>
</body>
</html>
相关文章
- js文字滚动效果实现
- Node.js初探之实现能向前台返回东西的简单服务器
- web 开发之js---js 实现地址栏的表单提交加密编码
- 基于 Vue.js 之 iView UI 框架非工程化实践记要 使用 Newtonsoft.Json 操作 JSON 字符串 基于.net core实现项目自动编译、并生成nuget包 webpack + vue 在dev和production模式下的小小区别 这样入门asp.net core 之 静态文件 这样入门asp.net core,如何
- JSP案例_简单实现验证码
- JS初学之-选项卡(图片切换类)
- Js调用exe程序方法(通过URL Protocol实现网页调用本地应用程序)
- JS简单实现自定义右键菜单
- 大型运输行业实战_day06_1_购票功能简单实现
- Nginx1.14.0+ModSecurity实现简单的WAF