2

我读过这个 -在 jquery UI 选项卡中预先选择启用 ajax 的选项卡 并尝试了 API 文档...

这是最基本的代码... http://jsfiddle.net/Xa2ur/

我希望能够指定选择哪个选项卡,但我能找到的语法不起作用。

我最终会传递一个变量,但如果我不能让硬代码工作,那么采取额外的步骤有什么好处。

任何帮助 - 以及“为什么”我所做的没有工作都非常感谢。

编码

$( function() {
    $( "#tabs" ).tabs({
        beforeLoad: function( event, ui ) {
            ui.jqXHR.error( function() {
                ui.panel.html( "Couldn't load this tab. We'll try to fix this as soon as possible." );
            });
        }
    });
});

-- 其他一些代码 --

<div id="tabs" >
        <ul>
            <li class="firsttab" ><a href="#tabs-1" >Wedding</a></li>
            <li class="" ><a href="#tabs-2" >Gig Feb 2013</a></li>
            <li class=""><a href="#tabs-3" >Homecoming</a></li>
        </ul>
        <div id="tabs-1" >
            <p>Description: Wedding Info</p>
            <p>photos</p>
        </div>
        <div id="tabs-2" >
            <p>Description: A gig @ TT the Bears</p>
            <p>blog</p>
        </div>
        <div id="tabs-3" >
            Stuff
        </div>
    </div>
    <script>
        $( "#tabs" ).tabs( "option", "active", 2 );
        // i HAVE also tried - $('#tabs').tabs({ selected: "2" });
    </script> 
4

1 回答 1

4
$( function() {
    $( "#tabs" ).tabs({
        beforeLoad: function( event, ui ) {
            ui.jqXHR.error( function() {
                ui.panel.html( "Couldn't load this tab. We'll try to fix this as soon as possible." );
            });
        },
        active:2
    });
});
于 2013-04-16T01:28:21.607 回答