我在Java Spring Framework中有一个Ajax基本Tab切换应用程序,我必须处理后退按钮场景。通过以下指定代码成功完成现在,面对的第一个页面加载比特定历史选择Tab的标签切换跳转。如果有人帮忙问这个,那就太棒了。谢谢。
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
答案 0 :(得分:0)
Spring Framework与Rails不同,Grails接近Rails,但是使用Groovy。
您的问题的解决方案基本上与浏览器的历史记录一致,正如您已经尝试过的那样。我唯一认为可以添加的是您应该查看HTML5历史记录API http://diveintohtml5.info/history.html,并考虑使用已经支持路由器的http://backbonejs.org/这样的js框架。