我有以下网站:
http://cassidoo.public.iastate.edu/
我在菜单中使用JQuery UI Tabs。加载页面时,选项卡中会有一段内容。
我已经尝试了从ui-tabs-hide
技巧到Javascript隐藏内容的所有内容。有缺点我不知道吗?我该怎么办?
感谢您的帮助!
答案 0 :(得分:9)
我遇到了类似的情况,这就是我解决这个问题的方法:
(1。)定义一个名为“hide”的css类,并将其设置为“display:none”
(3。)创建jquery.ui.tabs选择器时,使用 “tabscreate”方法从内容中删除“隐藏”类 面板。所以你的选择器看起来像这样:
//define tabs instance
$( "#tabs" ).tabs({
create: function( event, ui ) {
//when tabs are created, remove your class .hide from each content panel
//so jquery tabs will control when panel content will surface
$(your contentpanel selector).removeClass(hide);
}
//whatever else you need to do
....
...
..
});
要了解有关jQuery UI标签内部方法的更多信息,请阅读:
并阅读
create(event,ui)
希望这有帮助。
克里斯