jquery ui tabs 添加选项卡奇怪的行为
我将新的 jquery ui 选项卡添加到
示例页面 的选项卡(单击创建新选项卡)
代码
$('#tabs-2').tabs(
{
load: function(e, ui)
{
$('.show_comment').die('click');
if ($('#tabs-2').tabs('option','selected') == 0)
{
$('.new_text').click(function(){
$("#tabs-2").tabs("add", 'ushout.jsp' , 'album_name' );
return false;
});
return false;
});
}
}
,
selected: 1,
fx:{height: 'toggle', duration: 'fast'},
spinner: '<em>Loading...</em>' ,
collapsible: true
});
,但第一次选择选项卡(album_name)时不会显示页面...
但第二次选择选项卡时会显示页面,
请帮助
,谢谢
i m adding new jquery ui tabs to a tab
the sample page(click on Create a new Tab)
the code
$('#tabs-2').tabs(
{
load: function(e, ui)
{
$('.show_comment').die('click');
if ($('#tabs-2').tabs('option','selected') == 0)
{
$('.new_text').click(function(){
$("#tabs-2").tabs("add", 'ushout.jsp' , 'album_name' );
return false;
});
return false;
});
}
}
,
selected: 1,
fx:{height: 'toggle', duration: 'fast'},
spinner: '<em>Loading...</em>' ,
collapsible: true
});
but on selecting the tab(album_name) first time no page is displayed...
but on selecting the tab second time the page is displayed
please help
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加选项卡将具有此行为,并对选项卡产生任何影响,
该行
导致问题
使用,但没有效果,
谢谢
adding tabs will have this behaviour with any effects on the tabs
the line
is causing the problem
use with no effects
thanks