使用.load()附加URL - 加载内容的ID或文件名

时间:2011-02-16 16:34:52

标签: javascript jquery ajax

我正在将内容加载到div中,加载后我想更改页面的URL以反映加载的内容。 I.E.父页面 - http://www.example.com/foo - 加载内容时http://www.example.com/foo#content-1

此代码附加“#undefined”

...
var href = $(this).attr('href');
$("#content").load(href, function() {
            window.location.hash = (this).hash;
        });

... 我需要定位加载内容的id或url?我猜url

谢谢!

2 个答案:

答案 0 :(得分:1)

如果您想为浏览器历史记录执行此操作:

试试这个插件:http://benalman.com/projects/jquery-bbq-plugin/

以下是示例:http://benalman.com/code/projects/jquery-bbq/examples/fragment-basic

答案 1 :(得分:1)

在第4行,您使用的是(。)。hash而不是$(this).hash