我想在选择 tab1 时显示特定的 div。与 tab2 相同。请给我一个解决方案以在单击选项卡时显示/隐藏这些 div。我无法识别处于活动状态的这些选项卡的特定类或 ID。我的要求是单击 tab1 时我需要显示tab1
和content1
div
下面是链接
我想在选择 tab1 时显示特定的 div。与 tab2 相同。请给我一个解决方案以在单击选项卡时显示/隐藏这些 div。我无法识别处于活动状态的这些选项卡的特定类或 ID。我的要求是单击 tab1 时我需要显示tab1
和content1
div
下面是链接
一种不需要将外部内容移动到选项卡本身的方法是:
var contents = $('div[id^="content"]').hide();
$("#tabs").tabs({
activate: function(evt, ui) {
var num = ui.newPanel.attr('id').replace(/\D+/g, '');
contents.hide();
$('#content' + num).show();
}
});
但是,这种方法确实要求您在要显示id
的所有内容div
元素中附加一个数字,以便识别单击的选项卡、显示的面板和选项卡之外的元素之间的关系;所以你的 HTML 变成:
<div id="tabs">
<ul>
<li><a href="#tab1">Tab1</a></li>
<li><a href="#tab2">Tab2</a></li>
</ul>
<div id="tab1">
test1
</div>
<div id="tab2">
test2
</div>
</div>
<br/>
<div id="content1">
<p>
on click of first tab (tab1) I need to show this id as well
</p>
</div>
<br/>
<div id="content2"> <!-- added the '2' to the id here -->
<p>
on click of Second tab (tab2) I need to show this id as well
</p>
</div>
如果您将内容div
元素包装在外部容器中,在我的演示中它有id
of containers
,那么您可以将div
s 定位为稍微不同的显示/隐藏:
$("#tabs").tabs({
activate: function(evt, ui) {
var num = ui.newPanel.attr('id').replace(/\D+/g, '');
$('#contents > div').eq(num - 1).show().siblings().hide();
}
});
并使用 HTML:
<div id="tabs">
<ul>
<li><a href="#tab1">Tab1</a></li>
<li><a href="#tab2">Tab2</a></li>
</ul>
<div id="tab1">
test1
</div>
<div id="tab2">
test2
</div>
</div>
<br/>
<div id="contents">
<div id="content1">
<p>
on click of first tab (tab1) I need to show this id as well
</p>
</div>
<br/>
<div id="content2">
<p>
on click of Second tab (tab2) I need to show this id as well
</p>
</div>
</div>
我已经修改了上面的代码,以回应 OP 留下的评论(下面):
[On] 加载页面我需要显示内容 div1 以及 tab1 内容。
function showContent(evt, ui) {
if (!evt || !ui) {
return false;
}
else {
// ui.newPanel in the activate event,
// ui.panel in the create event
var panel = ui.newPanel || ui.panel,
num = panel.attr('id').replace(/\D+/g, '');
$('#contents > div').eq(num - 1).show().siblings().hide();
}
}
$(function() {
$("#tabs").tabs({
// runs the function when the tabs are created:
create: function(evt, ui) {
showContent(evt, ui);
},
// runs the function when the tabs are activated:
activate: function(evt, ui) {
showContent(evt, ui);
}
});
});