我想要一个简单的导航而不使用任何插件,只需简单的JQuery。
Link 1 Div 1,Div 2,Div 3,Div 4
链接2
链接3
链接4
当用户点击链接1显示Div 1并隐藏所有其他div时。链接2然后显示Div2并隐藏所有其他。我希望用更少的行来做到这一点。
答案 0 :(得分:2)
以下是我一直使用的代码段(original): JS:
$(document).ready(function() {
//When page loads...
$(".tab_content").hide(); //Hide all content
$("ul.tabs li:first").addClass("active").show(); //Activate first tab
$(".tab_content:first").show(); //Show first tab content
//On Click Event
$("ul.tabs li").click(function() {
$("ul.tabs li").removeClass("active"); //Remove any "active" class
$(this).addClass("active"); //Add "active" class to selected tab
$(".tab_content").hide(); //Hide all tab content
var activeTab = $(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
$(activeTab).fadeIn(); //Fade in the active ID content
return false;
});
});
css(这里有很多改善区域):
ul.tabs {
margin: 0;
padding: 0;
float: left;
list-style: none;
height: 32px; /*--Set height of tabs--*/
border-bottom: 1px solid #999;
border-left: 1px solid #999;
width: 100%;
}
ul.tabs li {
float: left;
margin: 0;
padding: 0;
height: 31px; /*--Subtract 1px from the height of the unordered list--*/
line-height: 31px; /*--Vertically aligns the text within the tab--*/
border: 1px solid #999;
border-left: none;
margin-bottom: -1px; /*--Pull the list item down 1px--*/
overflow: hidden;
position: relative;
background: #e0e0e0;
}
ul.tabs li a {
text-decoration: none;
color: #000;
display: block;
font-size: 1.2em;
padding: 0 20px;
border: 1px solid #fff; /*--Gives the bevel look with a 1px white border inside the list item--*/
outline: none;
}
ul.tabs li a:hover {
background: #ccc;
}
html ul.tabs li.active, html ul.tabs li.active a:hover { /*--Makes sure that the active tab does not listen to the hover properties--*/
background: #fff;
border-bottom: 1px solid #fff; /*--Makes the active tab look like it's connected with its content--*/
}
.tab_container {
border: 1px solid #999;
border-top: none;
overflow: hidden;
clear: both;
float: left; width: 100%;
background: #fff;
}
.tab_content {
padding: 20px;
font-size: 1.2em;
}
标记:
<ul class="tabs">
<li><a href="#tab1">Gallery</a></li>
<li><a href="#tab2">Submit</a></li>
</ul>
<div class="tab_container">
<div id="tab1" class="tab_content">
asdfasdfasdfasdf
</div>
<div id="tab2" class="tab_content">
asdfasdf
</div>
</div>
希望有所帮助
答案 1 :(得分:1)
我在jsfiddle为你做了一个,希望得到这个帮助。欢呼声
答案 2 :(得分:0)
您不想使用插件的任何原因?这是一个很棒的插件,可以满足您的所有要求:http://flowplayer.org/tools/tabs/index.html
答案 3 :(得分:0)
这是一个简单的脚本,只需添加到您的文件中即可使用,也不会与其他现有脚本冲突。
答案 4 :(得分:0)
您可以查看component on jsFiddle。
如果您想动态填充,也可以使用它。
$(document).ready(function() {
$.each($('.tabwrapper .tabmenu ul.nav li'), function(i) {
$(this).attr('data-tab', i);
});
$.each($('.tabwrapper .tabcontent .tabs'), function(i) {
$(this).attr('data-tab', i);
});
$('.tabwrapper .tabmenu ul.nav li a').click(function() {
var parent = $(this).parent(),
dataId = parent.data('tab');
if (!parent.hasClass('active')) {
$('.tabwrapper .tabmenu ul.nav li').removeClass('active');
parent.addClass('active');
$('.tabwrapper .tabcontent .tabs').hide();
$('.tabwrapper .tabcontent .tabs[data-tab="' + dataId + '"]').fadeIn();
}
});
});
答案 5 :(得分:0)
https://jqueryui.com/tabs/是一个插件,但也算作简单的jQuery。您考虑过这种选择吗?