在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
丹