0

在 IE8 中,并且只有 IE8,我的选项卡在第一次回发或刷新之前不会创建。我打赌其他人已经经历过这种情况,并且知道一种解决方法。我在用着

jquery-1.7.1.min.js,jquery-ui-1.8.18.custom.min.js

就是这么简单:

  // Tabs
    $tabs = $('#tab-control');

    // hide them until all logic and elements are wired up and ready ...
    //
    $tabs.hide();
    $tabs.tabs();

    $tabs.bind( "tabsselect", function(e, ui) {
    console.log('Setting cookie [' + cookieName + '] with value ' + ui.index + '...');
        $.cookies.set(cookieName, ui.index);
    });

    stickyTab = $.cookies.get(cookieName);

    if( ! isNaN( stickyTab ) ) {
        console.log('Now selecting tab: ' + stickyTab + '.');
        $tabs.tabs('select', stickyTab);
    }

    $tabs.show(300);

自己检查一下(请使用 IE8):http ://senchaportfolios.com

4

0 回答 0