26

我以前使用jquery-ui tabs扩展来通过 加载页面片段ajax,并隐藏或显示div页面中的隐藏 s。这两种方法都有据可查,我在那里没有遇到任何问题。

然而,现在我想用标签做一些不同的事情。当用户选择一个选项卡时,它应该完全重新加载页面 - 原因是每个选项卡部分的内容渲染起来有点贵,所以我不想一次全部发送并使用普通方法切换“显示:无”以显示它们。

我的计划是拦截选项卡的select事件,并通过操作 document.location 让该功能重新加载页面。

如何在select处理程序中获取新选择的选项卡索引及其对应的 html LI 对象?

$('#edit_tabs').tabs(  {
        selected: 2,     // which tab to start on when page loads
        select: function(e, ui) {
            var t = $(e.target);
            // alert("data is " +  t.data('load.tabs'));  // undef
            // alert("data is " +  ui.data('load.tabs'));  // undef

            // This gives a numeric index...
            alert( "selected is " + t.data('selected.tabs') )
            // ... but it's the index of the PREVIOUSLY selected tab, not the
            // one the user is now choosing.  
            return true;

            // eventual goal is: 
            // ... document.location= extract-url-from(something); return false;
        }
});

是否有我可以读取的事件或 ui 对象的属性将给出新选择的选项卡或其中的锚标记的索引、ID 或对象?

或者有没有更好的方法来使用标签重新加载整个页面?

4

8 回答 8

37

我会看看选项卡的事件。以下内容取自 jQuery 文档:

 $('.ui-tabs-nav').bind('tabsselect', function(event, ui) {
     ui.options // options used to intialize this widget
     ui.tab // anchor element of the selected (clicked) tab
     ui.panel // element, that contains the contents of the selected (clicked) tab
     ui.index // zero-based index of the selected (clicked) tab
 });

看起来 ui.tab 是要走的路。

于 2008-10-08T22:56:52.710 回答
7

在 jQuery UI - v1.9.2

ui.newTab.index()

获取活动选项卡的基数 0 索引

于 2013-01-28T11:04:36.487 回答
5
select: function(e, ui){var index=ui.index;}

很适合我。见:http ://api.jqueryui.com/tabs/#events

于 2010-08-25T08:32:10.047 回答
0

谢谢,jobscry - 你指出的 'ui.tab' 给了我点击的锚标签,我可以从中提取它的类、id、href 等......我选择使用 id 来编码我的 url。我的最终 tabs() 调用如下所示:

$(document).ready(function() {
    $('#edit_tabs').tabs(  {
        selected: [% page.selected_tab ? page.selected_tab : 0 %],
        select: function(e, ui) {
            // ui.tab is an 'a' object
            // it has an id of "link_foo_bar"
            // transform it into http://....something&cmd=foo-bar
            var url = idToTabURL(ui.tab.id);

            document.location = url;
            return false;
        }
    }).show();
});
于 2008-10-08T23:29:32.537 回答
0

在我的实现中,它的工作方式如下:

$(document).ready(function() {
    $('#edit_tabs').tabs(  {
        selected: [% page.selected_tab ? page.selected_tab : 0 %],
        select: function(e, ui) {
            // ui.tab is an 'a' object
            var url = ui.tab.href;

            document.location = url;
            return false;
        }
    }).show();
});
于 2008-10-09T10:25:46.970 回答
0

或者我用于我的网站的另一个选项是这个。它是一个基本的 UL/Div 选项卡导航系统。单击指向带有井号标记的另一个页面的链接时触发正确选项卡的关键是通过您的 UL 过滤与通过浏览器传递的内容相匹配的 #example。它是这样的。

这是示例 HTML:

    <div id="tabNav">

  <ul class="tabs">
    <li><a href="#message">Send a message</a></li>
    <li><a href="#shareFile">Share a file</a></li>
    <li><a href="#arrange">Arrange a meetup</a></li>
  </ul>
</div>

<div id="tabCont">

  <div id="message">
    <p>Lorem ipsum dolor sit amet.</p>
  </div>
  <div id="shareFile">
    <p>Sed do eiusmod tempor incididunt.</p>
  </div>
  <div id="arrange">
    <p>Ut enim ad minim veniam</p>
  </div>

</div>

和实现它的Jquery:

$(document).ready(function() {
$(function () {
    var tabs = [];
    var tabContainers = [];

    $('ul.tabs a').each(function () {
      // note that this only compares the pathname, not the entire url
      // which actually may be required for a more terse solution.
        if (this.pathname == window.location.pathname) {
            tabs.push(this);
            tabContainers.push($(this.hash).get(0));
        }
    });

    $(tabs).click(function () {
        // hide all tabs
        $(tabContainers).hide().filter(this.hash).show();


        // set up the selected class
        $(tabs).removeClass('active');
        $(this).addClass('active');

        return false;

});




 $(tabs).filter(window.location.hash ? '[hash=' + window.location.hash + ']' : ':first').click();

  });

});

那应该为你处理它。我知道这不是最干净的代码,但它会让你到达那里。

于 2009-06-14T07:06:37.913 回答
0

我确实找到了两种方法来完成这个要求,因为我很难把代码放在这里,你可以在http://ektaraval.blogspot.com/2011/09/calling-javascript-when- jquery-ui-tab.html

希望对某人有所帮助..

于 2011-09-09T20:41:21.743 回答
0

快速查看文档为我们提供了解决方案:

$('#edit_tabs').tabs({ selected: 2 }); 

上述语句将激活第三个选项卡。

于 2012-10-10T07:05:32.437 回答