我的jquery选项卡在加载后无法正常工作

时间:2017-06-05 14:51:47

标签: jquery tabs load jquery-ui-tabs

我的默认jquery选项卡在加载后无效,我该怎么办?

session.save_path

1 个答案:

答案 0 :(得分:0)

var section = $("#header a");
section.click(function(){
    $('#load').load(this.id + ' #load', function() {
        $('.tabs').tabs();
    }); 
    window.history.pushState(this.id, this.id, this.id);
    if (this.id == '/p/sign-out') {
        window.location.assign("/p/sign-out");
    }
});