ahref="#tab-x",必须得有id为tab-x的元素,才能实现页面跳跃,而课程视频中,并没有设置id为"tab-chrome、tab-firefox"等4个元素,所以不知道是什么原理实现点击ahref,页面跳跃到tab处。
本人:
.dropdown-menu设id=tab_go
.nav-tabs设id=tab_list
$(function(){
$("#tab_go a").each(function(i){
$(this).click(function(){
$("#tab_list a").eq(i).tab("show");
});
});
})
本人:
.dropdown-menu设id=tab_go
.nav-tabs设id=tab_list
$(function(){
$("#tab_go a").each(function(i){
$(this).click(function(){
$("#tab_list a").eq(i).tab("show");
});
});
})
2016-02-01
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<body class="text-center">
<h1>Hello World !</h1>
<button class="btn btn-primary"> 我是按钮,按我一下</button>
正确的打开方式~
<body class="text-center">
<h1>Hello World !</h1>
<button class="btn btn-primary"> 我是按钮,按我一下</button>
正确的打开方式~
最赞回答 / 等___
<...code...>作用是向右偏移*个位置你应该是想对列排序吧?应该使用 .col-md-push-* 和 .col-md-pull-* 改变列的顺序。push右移pull左移(为了看的方便我加上了边框)<...code...>
2016-01-21
最新回答 / _潇潇暮雨
如果有这句话就表示页面加载完成后自动进行轮播(你可以去掉试试效果)。注意:该属性不能和javascript初始化结合使用,参见Bootstrap官方文档
2016-01-19
<link rel="stylesheet" href="bootstrap.min.css">
<h1>Hello World !</h1>
<button class="btn btn-primary"> 我是按钮,按我一下</button>
<script src="http://cdn.bootcss.com/jquery/1.11.1/jquery.min.js"></script>
<script src="http://cdn.bootcss.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<h1>Hello World !</h1>
<button class="btn btn-primary"> 我是按钮,按我一下</button>
<script src="http://cdn.bootcss.com/jquery/1.11.1/jquery.min.js"></script>
<script src="http://cdn.bootcss.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
最新回答 / dlnrszk
不用合起来啊,你是没有加载bootstrap的css 和js文件吧?左侧提示的3个库的地址要添加。然后轮播按钮你自己设置,左右方向是:<span class='glyphicon glyphicon-chevron-left'></span>和<span class='glyphicon glyphicon-chevron-right'></span>。
2016-01-18