<ul class="nav nav-pills">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" id="tutorial">教程
<span class="caret"></span>
</a>
</ul>
这样就可以隐藏
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" id="tutorial">教程
<span class="caret"></span>
</a>
</ul>
这样就可以隐藏
2016-11-27
queue传送门 http://www.w3school.com.cn/jquery/data_queue.asp
2016-11-25
<style>
body {
position: relative;
padding-top:20px;
}
.scrollspy-example{
height:500px;
font-size:20px;
overflow:auto;
}
</style>
body {
position: relative;
padding-top:20px;
}
.scrollspy-example{
height:500px;
font-size:20px;
overflow:auto;
}
</style>
2016-11-25
<style>
.scrollspy-example{
height:500px;
font-size:20px;
overflow:auto;
position: relative;
}
</style>
.scrollspy-example{
height:500px;
font-size:20px;
overflow:auto;
position: relative;
}
</style>
2016-11-25
官网传送门 http://v3.bootcss.com/javascript/#scrollspy
代码在本地运行测试吧
代码在本地运行测试吧
2016-11-25
已采纳回答 / _Rock
事件冒泡:例如这样一个结构 :<li><a></a></li>,假如你在a标签上绑定了一个点击click事件,如:$("a").click(function(){alert("a"); }); 还在li标签上绑定了一个事件,如:$("li").click(function(){alert("li"); }); 如果不加e.preventDefault();这一语句,结果会在alert("a");执行后再次执行alert("li")语句,因为a标签在li标签...
2016-11-22