使用 jQuery Tabs 启用选项卡
我像这样禁用了该选项卡:
$("#tabs").tabs({ disabled: [1, 2] });
但是当我尝试启用其中一个选项卡时,它不起作用:
$("#tabs").tabs({ enabled: [1] });
我在这里做错了什么吗?
I disabled the tab like this:
$("#tabs").tabs({ disabled: [1, 2] });
But when I try to enable one of the tabs it is not working:
$("#tabs").tabs({ enabled: [1] });
Is there something I'm doing wrong here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
尝试
$("selector").tabs("enable", n);
其中 n 是选项卡的索引Try
$("selector").tabs("enable", n);
where n is the index of the tab从未使用过 jQuery Tabs,但我看不到任何选项用于
启用
。您是否尝试过更新禁用选项卡列表以删除选项卡 1 ?
或
(文档中)
Never used jQuery Tabs but I can't see any option for
enabled
.Have you tried to just update the list of disabled tabs to remove tab 1 ?
or
(that's in the docs)
我相信您正在寻找此页面上找到的
.tabs( "option" , optionName , [value] )
方法:http://jqueryui.com/demos/tabs/(单击“方法”选项卡并找到下面的“选项”)。更新
在文档的
$(selector).tabs('enable', n)
部分下有这样的语句:I believe you are looking for the
.tabs( "option" , optionName , [value] )
method found on this page: http://jqueryui.com/demos/tabs/ (click the "Method" tab and find "option" below).Update
Under the section of the docs for
$(selector).tabs('enable', n)
there is this statement:不应该是
$("#tabs").tabs("enable", [1])
吗?Shouldn't it be
$("#tabs").tabs("enable", [1])
?