jQuery UI 选项卡禁用选项卡导航
我尝试使用禁用选项卡导航
var $tabs = $("#tabs").tabs({
select: function(event, ui) { return false; }
});
但是,这也会禁用我用于导航的流链接:
$('input.nexttab').click(function() {
var tab_num = $tabs.tabs('option', 'selected');
// error check this tab before proceeding
if ( check_tab(tab_num) ) {
$tabs.tabs('select', tab_num + 1 );
}
});
理想情况下,我想禁用当前选项卡右侧选项卡的选项卡导航,并确保我的 <<上一个和下一个> ;> 选项卡导航按钮始终有效。
有什么建议么?
I tried to disable tab navigation using
var $tabs = $("#tabs").tabs({
select: function(event, ui) { return false; }
});
However, this also disables the flow links I'm using for navigation:
$('input.nexttab').click(function() {
var tab_num = $tabs.tabs('option', 'selected');
// error check this tab before proceeding
if ( check_tab(tab_num) ) {
$tabs.tabs('select', tab_num + 1 );
}
});
Ideally, I'd want to disable tab navigation for tabs to right of current tab, and ensure my <<prev and next>> tab navigation buttons always work.
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否尝试过将 事件选项 设置为不太可能被触发的内容(如果有的话)?
例如:
或
Have you tried setting the event option to something that isn't likely to be fired (if at all)?
For instance:
or
您应该在传递给 $(document).ready 的函数中的第一个闭包上存储一个标志,在单击下一个/上一个按钮时将其设置为 true,并在单击选项卡时将其设置回 false已经显示,通过这样做,您将只能使用按钮更改选项卡。
检查此工作示例和以下代码片段:
You should store a flag on the first closure, in the function you pass to
$(document).ready
, set it true when your next/prev buttons are clicked, and set back to false when the tab has been shown, by doing so, you will be only able to change tab by using the buttons.Check this working sample and the following code snippet: