jquery隐藏我的内容
大家好,我在侧边栏中创建了一个选项卡菜单(遵循教程),但我现在使用 codeigniter 来回显数据库中的一些结果..
但是选项卡菜单隐藏了我的内容,但我可以在源代码中看到
它这是我可以在源代码
<div style="border-bottom:1px solid #e0e0e0; width:200px; height:100px;" class="sidebarForumWrapper">
headline text here
<div style="border:1px solid #e0e0e0; padding:5px;" class="sidebarForumImg">
<img width="20" height="20" src="">
</div>
<!-- sidebarForumImg -->
text text text
</div>
<!-- sidebarForumWrapper -->
和选项卡功能
<script style="text/javascript">
$(function() {
// setting the tabs in the sidebar hide and show, setting the current tab
$('div.tabbed div').hide();
$('div.t1').show();
$('div.tabbed ul.tabs li.t1 a').addClass('tab-current');
// SIDEBAR TABS
$('div.tabbed ul li a').click(function(){
var thisClass = this.className.slice(0,2);
$('div.tabbed div').hide();
$('div.' + thisClass).show();
$('div.tabbed ul.tabs li a').removeClass('tab-current');
$(this).addClass('tab-current');
});
});
</script>
中看到的内容,如果您愿意,您可以在这里看到我的网站 http://www.rapcom .dk
Hello all i have made a tab menu in my sidebar (follow a tutorial), but i have now use codeigniter to echo out some result from the database..
but the tab menu hide my content, but i can see it in the source
This is what i can see in the source
<div style="border-bottom:1px solid #e0e0e0; width:200px; height:100px;" class="sidebarForumWrapper">
headline text here
<div style="border:1px solid #e0e0e0; padding:5px;" class="sidebarForumImg">
<img width="20" height="20" src="">
</div>
<!-- sidebarForumImg -->
text text text
</div>
<!-- sidebarForumWrapper -->
and the tab function
<script style="text/javascript">
$(function() {
// setting the tabs in the sidebar hide and show, setting the current tab
$('div.tabbed div').hide();
$('div.t1').show();
$('div.tabbed ul.tabs li.t1 a').addClass('tab-current');
// SIDEBAR TABS
$('div.tabbed ul li a').click(function(){
var thisClass = this.className.slice(0,2);
$('div.tabbed div').hide();
$('div.' + thisClass).show();
$('div.tabbed ul.tabs li a').removeClass('tab-current');
$(this).addClass('tab-current');
});
});
</script>
if you want you can see my site live here http://www.rapcom.dk
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的问题在于这一行:
这将
display: none
所有tabbed
下的 div,而是使用:但我建议您重新考虑您的 Tabs 方法并使用 jQuery UI 选项卡 或至少使用
标记指向的相同方法对应
DIV
内容容器的 id。Your problem is with this line:
This would
display: none
ALL the divs undertabbed
, instead use:But I recommend you reconsider your Tabs approach and use the jQuery UI Tabs or at least using the same approach where the
<a>
tags will point to the id of the correspondingDIV
content container.删除这行代码并重试
remove this line of code and try again