标签页(tab)切换的原生js,jquery和bootstrap实现
概述
这是我在学习课程Tab选项卡切换效果时做的总结和练手。
原课程中只有原生js实现,jquery和bootstrap实现是我自己补上的。
本节内容
- 标签页(tab)切换的原生
js实现 - 标签页(tab)切换的
jquery实现 - 标签页(tab)切换的
bootstrap实现
js实现

说明:
- 代码是我自己写的,与课程中的不一样。
- 主要利用
display:none来把部分内容隐藏而显示其它内容。 - 遇到了事件的循环绑定,我是利用添加id使其成为钩子来解决的。
代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>tab切换</title>
<style type="text/css">
*{
font-family: Times;
}
#main {
font-size: 13px;
height: 100px;
width: 300px;
border: 1px solid #c0c0c0;
}
#top_column {
height: 30px;
width: 300px;
}
#top_column div {
height: 30px;
width: 75px;
background-color: #fffff0;
text-align: center;
line-height: 30px;
border: 1px solid #c0c0c0;
margin: -1px -1px 0px -1px;
}
#top_column div:hover {
background-color: #fff;
font-weight:bold;
color: orange;
}
.top_column_hover {
background-color: #fff;
font-weight:bold;
color: orange;
}
#bottom_column {
height: 70px;
width: 300px;
}
#bottom_column a {
height: 35px;
width: 140px;
display: block;
text-align: left;
text-decoration: none;
outline: none;
color: black;
line-height: 35px;
padding-left: 10px;
float: left;
}
#bottom_column a:hover {
color: orange;
}
#main div {
float: left;
}
</style>
</head>
<body>
<div id="main">
<div id="top_column">
<div class="column_notice">公告</div>
<div class="column_rule">规则</div>
<div class="column_forum">论坛</div>
<div class="column_security">安全</div>
</div>
<div id="bottom_column">
<div class="content_notice" style="display:block">
<a href="#" class="notice1">颠覆式创新</a>
<a href="#" class="notice2">旗舰来了</a>
<a href="#" class="notice3">全国首测</a>
<a href="#" class="notice4">千年一遇</a>
</div>
<div class="content_rule" style="display:none">
<a href="#" class="rule1">司机高速</a>
<a href="#" class="rule2">北欧村名</a>
<a href="#" class="rule3">高校老师</a>
<a href="#" class="rule4">公安工作组</a>
</div>
<div class="content_forum" style="display:none">
<a href="#" class="forum1">百度贴吧</a>
<a href="#" class="forum2">哈尔滨</a>
<a href="#" class="forum3">麦当劳</a>
<a href="#" class="forum4">光头哥</a>
</div>
<div class="content_security" style="display:none">
<a href="#" class="security1">经纪人</a>
<a href="#" class="security2">以上处于</a>
<a href="#" class="security3">国足领队</a>
<a href="#" class="security4">国务院</a>
</div>
</div>
</div>
<script type="text/javascript">
window.onload=tab;
function tab(){
var top_column=document.getElementById("top_column").getElementsByTagName("div");
var bottom_column=document.getElementById("bottom_column").getElementsByTagName("div");
for(var i=0;i<top_column.length;i++){
top_column[i].id=i;
top_column[i].onmouseover=function(){
tab_content(this.id);
}
}
function tab_content(i){
for(var j=0;j<top_column.length;j++){
top_column[j].className="top_column_not_hover";
bottom_column[j].style.display="none";
}
top_column[i].className="top_column_hover";
bottom_column[i].style.display="block";
}
}
</script>
</body>
</html>
jquery实现

说明:
效果其实和原生js实现是一样的。
因为我想写一下jquery代码练练手,所以只是把原生js实现中的js代码改成了jquery的形式。
代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>tab切换</title>
<style type="text/css">
*{
font-family: Times;
}
#main {
font-size: 13px;
height: 100px;
width: 300px;
border: 1px solid #c0c0c0;
}
#top_column {
height: 30px;
width: 300px;
}
#top_column div {
height: 30px;
width: 75px;
background-color: #fffff0;
text-align: center;
line-height: 30px;
border: 1px solid #c0c0c0;
margin: -1px -1px 0px -1px;
}
#top_column div:hover {
background-color: #fff;
font-weight:bold;
color: orange;
}
.top_column_hover {
background-color: #fff;
font-weight:bold;
color: orange;
}
#bottom_column {
height: 70px;
width: 300px;
}
#bottom_column a {
height: 35px;
width: 140px;
display: block;
text-align: left;
text-decoration: none;
outline: none;
color: black;
line-height: 35px;
padding-left: 10px;
float: left;
}
#bottom_column a:hover {
color: orange;
}
#main div {
float: left;
}
</style>
</head>
<body>
<div id="main">
<div id="top_column">
<div class="column_notice">公告</div>
<div class="column_rule">规则</div>
<div class="column_forum">论坛</div>
<div class="column_security">安全</div>
</div>
<div id="bottom_column">
<div class="content_notice" style="display:block">
<a href="#" class="notice1">颠覆式创新</a>
<a href="#" class="notice2">旗舰来了</a>
<a href="#" class="notice3">全国首测</a>
<a href="#" class="notice4">千年一遇</a>
</div>
<div class="content_rule" style="display:none">
<a href="#" class="rule1">司机高速</a>
<a href="#" class="rule2">北欧村名</a>
<a href="#" class="rule3">高校老师</a>
<a href="#" class="rule4">公安工作组</a>
</div>
<div class="content_forum" style="display:none">
<a href="#" class="forum1">百度贴吧</a>
<a href="#" class="forum2">哈尔滨</a>
<a href="#" class="forum3">麦当劳</a>
<a href="#" class="forum4">光头哥</a>
</div>
<div class="content_security" style="display:none">
<a href="#" class="security1">经纪人</a>
<a href="#" class="security2">以上处于</a>
<a href="#" class="security3">国足领队</a>
<a href="#" class="security4">国务院</a>
</div>
</div>
</div>
<script src="http://how2j.cn/study/js/jquery/2.0.0/jquery.min.js"></script>
<script type="text/javascript">
$(window).load(function(){
var $top_column=$("#top_column div");
var $bottom_column=$("#bottom_column div");
$.each($top_column,function(i,item){
$(item).hover(tab_content);
})
function tab_content(){
$.each($top_column,function(i,item){
$(item).attr("class", "top_column_not_hover");
})
$.each($bottom_column,function(i,item){
$(item).hide();
})
var index=$top_column.index($(this));
$bottom_column.eq(index).show();
$top_column.eq(index).attr("class", "top_column_hover");
}
})
</script>
</body>
</html>
bootstrap实现

说明:
- 代码中不需要额外写
js,只需引用jquery和bootstrap文件即可。 - 虽然不需要写
js,但是缺点是需要点击,并且鼠标离开后回复原状,解决这些问题的话需要写js。 - 虽然
bootstrap看起来很华丽,而且很简便。但是在一些小改动上面很麻烦,而且会踩很多坑。所以如果需要细致并且频繁修改网站的话,不建议用bootstrap搭建网站。 - 踩坑记录:
box-sizing属性的content-box和border-box(其实这也是盒模型的基本)。
代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>tab切换</title>
<style type="text/css">
*{
font-family: Times;
}
#main {
font-size: 13px;
height: 100px;
width: 300px;
border: 1px solid #c0c0c0;
margin:10px 10px;
box-sizing: content-box;
}
#myTab {
height: 30px;
width: 300px;
}
#myTab div {
height: 30px;
width: 75px;
background-color: #fffff0;
text-align: center;
line-height: 30px;
border: 1px solid #c0c0c0;
margin: -1px -1px 0px -1px;
box-sizing: content-box;
}
#myTab div:hover {
background-color: #fff;
font-weight:bold;
color: orange;
cursor: pointer;
}
#myTabContent {
height: 70px;
width: 300px;
}
#myTabContent a {
height: 35px;
width: 140px;
display: block;
text-align: left;
text-decoration: none;
outline: none;
color: black;
line-height: 35px;
padding-left: 10px;
float: left;
}
#myTabContent a:hover {
color: orange;
}
#main div {
float: left;
}
</style>
</head>
<body>
<div id="main">
<div id="myTab" class="nav nav-tabs">
<div href="#notice" data-toggle="tab">公告</div>
<div href="#rule" data-toggle="tab">规则</div>
<div href="#forum" data-toggle="tab">论坛</div>
<div href="#security" data-toggle="tab">安全</div>
</div>
<div id="myTabContent" class="tab-content">
<div class="tab-pane fade in active" id="notice">
<a href="#" class="notice1">颠覆式创新</a>
<a href="#" class="notice2">旗舰来了</a>
<a href="#" class="notice3">全国首测</a>
<a href="#" class="notice4">千年一遇</a>
</div>
<div class="tab-pane fade" id="rule">
<a href="#" class="rule1">司机高速</a>
<a href="#" class="rule2">北欧村名</a>
<a href="#" class="rule3">高校老师</a>
<a href="#" class="rule4">公安工作组</a>
</div>
<div class="tab-pane fade" id="forum">
<a href="#" class="forum1">百度贴吧</a>
<a href="#" class="forum2">哈尔滨</a>
<a href="#" class="forum3">麦当劳</a>
<a href="#" class="forum4">光头哥</a>
</div>
<div class="tab-pane fade" id="security">
<a href="#" class="security1">经纪人</a>
<a href="#" class="security2">以上处于</a>
<a href="#" class="security3">国足领队</a>
<a href="#" class="security4">国务院</a>
</div>
</div>
</div>
<script src="http://how2j.cn/study/js/jquery/2.0.0/jquery.min.js"></script>
<link href="http://how2j.cn/study/css/bootstrap/3.3.6/bootstrap.min.css" rel="stylesheet">
<script src="http://how2j.cn/study/js/bootstrap/3.3.6/bootstrap.min.js"></script>
<script type="text/javascript">
</script>
</body>
</html>
标签页(tab)切换的原生js,jquery和bootstrap实现的更多相关文章
- bootstrap 标签页tab切换js(含报错原因)
booststrap 标签页的tab切换,相信大家已经都很熟悉了,在boot官网示例以及其他网站已经很多罗列相关代码的了,这里就不赘述了.这里主要贴下让boot标签页默认显示哪个标签页的js. 主要留 ...
- 几种tab切换尝试 原生js
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8" ...
- tabs(标签页的现成页面)原生js写法
直接上代码 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w ...
- 标签页tab.js 在栏目之间切换,局部变化
1.在使用bootstrap 中,我们会用到在栏目之间切换,来刷新页面的局部,可以使用下面的方法 <link rel="stylesheet" href="http ...
- Bootstrap标签页(Tab)插件
标签页(Tab)在Bootstrap导航元素一章中简介过,通过结合一些data属性,您可以轻松地创建一些标签页界面.通过这个插件您可以把内容放置在标签页或胶囊式标签页甚至是下拉菜单标签页中. 用法 您 ...
- EasyUI创建异步树形菜单和动态添加标签页tab
创建异步树形菜单 创建树形菜单的ul标签 <ul class="easyui-tree" id="treeMenu"> </ul> 写j ...
- selenium WebDriver 对浏览器标签页的切换
关于selenium WebDriver 对浏览器标签页的切换,现在的市面上最新的浏览器,当点击一个链接打开一个新的页面都是在浏览器中打开一个标签页,而selenium只能对窗口进行切换的方法,只能操 ...
- 标签页的切换方法(DOM)
效果: 1.点击“JAVA语言” 2.点击“C语言” 3.点击C++语言 代码: <!doctype html> <html> <head> <meta ch ...
- 在QMainWindow中利用多个QDockWidget构成标签页tab(原创)
功能描述: 在QMainWindow下,使用多个QDockWidget构成可切换,可拖动,可关闭的标签页:标签页的切换由相关联的QAction触发. 实现效果: 代码如下: QDockWidget * ...
随机推荐
- Javascript中 toFixed
javascript中toFixed使用的是银行家舍入规则. 银行家舍入:所谓银行家舍入法,其实质是一种四舍六入五取偶(又称四舍六入五留双)法. 简单来说就是:四舍六入五考虑,五后非零就进一,五后为零 ...
- 使用jQuery+huandlebars遍历if判断不足引用helper
兼容ie8(很实用,复制过来,仅供技术参考,更详细内容请看源地址:http://www.cnblogs.com/iyangyuan/archive/2013/12/12/3471227.html) & ...
- html----input标签
HTML 5 <input> 标签 定义和用法 <input> 标签规定用户可输入数据的输入字段. 根据不同的 type 属性,输入字段有多种形态.输入字段可以是文本字段.复选 ...
- iOS之Safari调试webView/H5页面
之前做过混合开发,用的是JavaScriptCore+OC+UIWebView. Safari调试功能真的很有用,通过它可以轻松定位问题的所在,下面说说怎么调试. 开启Safari开发菜单 在Mac的 ...
- eclipse中启动项目报内存溢出问题通过修改配置解决
标注:添加下面的参数还是挺管用的,本人亲测可试,同时启用两个项目,总是报堆内存不足,加了下面的参数后变可以同时正常运行了. 错误如下: Error occurred during initializ ...
- Linux驱动之异步OR同步,阻塞OR非阻塞概念介绍
链接:https://www.zhihu.com/question/19732473/answer/20851256 1.同步与异步同步和异步关注的是消息通信机制 (synchronous commu ...
- 综合评价模型C++实现
1 综合评价模型建立步骤 综合评价模式是一种对一个或多个系统进行评价的模型.一般分为如下几个步骤: 选取评价指标,指标的选取应该具有独立性和全面性. 得到m×n测量矩阵,每一行表示一个带评价系统(共m ...
- Scatter 散点图
散点图 首先,先引入matplotlib.pyplot简写作plt,再引入模块numpy用来产生一些随机数据.生成1024个呈标准正态分布的二维数据组 (平均数是0,方差为1) 作为一个数据集,并图像 ...
- java读取jar包中的文件
随手写了一个java小工具,maven打包成功后,发现工具总是读不到打在jar包中的文件信息,要读取的文件位于 /src/main/resources 目录下,打包成功后,文件就在jar包中根目录下, ...
- SQLite3命令操作大全
SQLite3命令操作大全 SQLite库包含一个名字叫做sqlite3的命令行,它可以让用户手工输入并执行面向SQLite数据库的SQL命令.本文档提供一个样使用sqlite3的简要说明. 一.ql ...