jQuery选项卡需要在IE8中加载刷新?

时间:2012-04-24 03:26:35

标签: jquery internet-explorer-8 jquery-ui-tabs

在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

0 个答案:

没有答案