如何在刷新后使用url hash加载特定页面?

时间:2013-10-31 12:11:56

标签: javascript jquery ajax

所以,我正在使用url哈希来帮助我在hashchange上添加特定内容。现在当我在某些特定内容上并刷新整个页面时,我在网址中有了这个哈希值,但仍然没有得到该哈希表示的内容。

说我的网址是: http://localhost/user我点击了详情,它将我的网址转为以下内容: http://localhost/user#!details我正在查看详细信息页面。

但是当我重新加载页面时,将上面的内容作为我的url,哈希保持不变并且哈希没有变化,它不会调用我与hashchange事件绑定的函数。

每次用户使用beforeunload重新加载时,我都无法在不发送ajax请求的情况下将哈希值发送到服务器端。

任何建议?

我的代码:

var pages = {};
pages['home'] = ""; pages['details'] = ""; pages['reviews'] = ""; pages['favs'] = "";
pages['likes'] = "", pages['gallery'] = "", pages['visited'] = "", pages['coupons'] = "";

$(window).bind('hashchange', function(event) {
    var curr_hash = event.target.location.hash;
    var page_to_load = curr_hash.substr(2);
    var loadurl = "/ci_theyaw/user/user_" + page_to_load;
    load_page(loadurl, page_to_load);
});

function load_page(page, toload){

    // alert(pages[toload]);

    if(pages[toload] == "") {
        var post_data = {
            '<?php echo $this->security->get_csrf_token_name(); ?>' : '<?php echo $this->security->get_csrf_hash(); ?>'
        };

        $.ajax({
            type: 'POST',
            url: page,
            data: post_data,
            dataType: "html",
            success : function(data) {
                page[toload] = data;
                $('.right-pane').html(data);
            },
            error : function(xhr, ajaxOptions, thrownError){
                alert(xhr.status);
                console.log(xhr.responseText);
                alert(thrownError);
            }
        });
    }

    else {
        $('.right-pane').html(page[toload]);
    }
}

2 个答案:

答案 0 :(得分:5)

您需要在加载时运行附加到hashchange的代码,以防有人刷新页面,甚至直接将其输入浏览器。试试这个:

var hashUpdate = function(curr_hash) {
    var page_to_load = curr_hash.substr(2);
    var loadurl = "/ci_theyaw/user/user_" + page_to_load;
    load_page(loadurl, page_to_load);
}

$(window).bind('hashchange', function(e) {
    hashUpdate(e.target.location.hash);
}); 
window.location.hash && hashUpdate(window.location.hash); // onload, if there was a fragment in the URL

答案 1 :(得分:0)

$(function(){
    var curr_hash = window.location.hash;
    var page_to_load = curr_hash.substr(2);
    var loadurl = "/ci_theyaw/user/user_" + page_to_load;
    load_page(loadurl, page_to_load);
});