jquery ui tabs 添加选项卡奇怪的行为

发布于 2024-10-14 15:29:57 字数 734 浏览 6 评论 0原文

我将新的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暖树树初阳… 2024-10-21 15:29:58

添加选项卡将具有此行为,并对选项卡产生任何影响,

该行

fx:{height: 'toggle', duration: 'fast'}

导致问题

使用,但没有效果,

$('#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
});

谢谢

adding tabs will have this behaviour with any effects on the tabs

the line

fx:{height: 'toggle', duration: 'fast'}

is causing the problem

use with no effects

$('#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
});

thanks

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文