星期五, 6月 18, 2010

[JQuery UI] Tab

$("#tab").tabs({ ajaxOptions: {  async: true},
        select:function(event,ui){
             alert(ui.index);//tab索引,從0開始
             alert(ui.options);//啟動options內容
             alert(ui.tab);//被選取的tab連結
             alert(ui.panel);//被選取的tab的顯示內容
        },
        spinner: ""
    });
 
//getter
var selected = $( ".selector" ).tabs( "option", "selected" );
 
//setter,注意要索引值是int
$( ".selector" ).tabs( "option", "selected", 3 );

沒有留言:

張貼留言

留個話吧:)

其他你感興趣的文章

Related Posts with Thumbnails