1

我在 Java Spring Framework 中有一个基于 Ajax 的选项卡切换应用程序,我必须处理后退按钮场景。通过以下指定代码已成功完成现在面临的效果是第一页加载,而不是针对特定历史选择的选项卡出现选项卡切换跳转。如果有人对此提供帮助,那将非常感谢。

var innerTab = "";
function navigateAjaxHtmlSetup(target,response){
        if (typeof target == 'undefined') 
        target = "#ajax-container";  
        $(target).html(response);
        $("input[check-with-select]:checked").parent("label").parent("td").nextUntil(":last").find('select').attr('required', 'required');
        $(target).focus();
        $("#ajax-loader").hide();    
}
function pushStateToHistory(){
    var history = window.history;
    var location = window.location.pathname;
    history.pushState({}, "GHFP", location+activeTabs());
}

function anchorAjaxCall(self,url,state){
        $.ajax({
            type: 'GET',
            url: url,
            dataType: "html",
            success: function (response) {
                var target = self.attr('targeto');
                navigateAjaxHtmlSetup(target,response);
                if (state)
                    pushStateToHistory();
//              if(innerTab != ""){
//                  var anchor  = $("a#"+innerTab);
//                  innerTab = "";
//                  anchorAjaxCall(anchor,anchor.attr('href'));
//              }
            }
        });
}

function activeTabs(){
    selectedTabList = $(".tabs-nav a.active");
    var activeURL;
    if (selectedTabList.length > 0){
        activeURL="#";
        selectedTabList.each(function(index,el){
            activeURL +="/"+$(el).attr('id');
        });
    }else{
        activeURL="";
    }   
    return activeURL;
}

function urlAjaxNavigationHandling(hash){
    if (hash.indexOf('/')!=-1)
    {
        var selectedTabList = hash.substring(1,hash.length).split('/');
        var anchor  = $("a#"+selectedTabList[1]);
        anchorAjaxCall(anchor,anchor.attr('href'),false);
        if (selectedTabList.length > 1)
            innerTab = selectedTabList[2];
    }  
}
window.onpopstate = function(e) {
    urlAjaxNavigationHandling(window.location.hash);
};

尽管我的问题根本与 Spring 或 Java 无关,但我只是将它们指定为标记,如果有人在谷歌周围搜索以实现 Ajax 基础应用程序。这可能对他有帮助,因为我没有在 Spring Framework 中找到任何对 JQuery 的内置支持,因为 Ruby on Rails

4

1 回答 1

0

Spring Framework 与 Rails 不同,Grails 与 Rails 很接近,但具有 Groovy。

正如您已经在尝试的那样,您的问题的解决方案基本上是使用浏览器的历史记录。我可以补充的唯一想法是您应该查看 HTML5 History API http://diveintohtml5.info/history.html并考虑使用已经支持路由器的 js 框架,例如http://backbonejs.org/ 。

于 2013-04-19T11:35:43.713 回答