0

我有一个带有链接的 html 页面:

page.html(它的网址是http://myhost/home/

<a href="javascript:void(0)" id="first">Link</a>

脚本.js:

$(function() {
    $('#first').click(function() {
         $('#some_div').load('home/new/new_page.html');
         var pathname = window.loaction.pathname;
         alert(pathname);
    }
});

当我单击 中的链接时page.htmlnew_page.html正在加载#some_div,并且可以正常工作。如何捕获加载函数的 url,所以当我像上面的示例中那样提醒它时,我会得到'/home/new/'而不是'/home/'

4

1 回答 1

0

改变

var pathname = window.location.pathname;

var pathname = window.loaction.pathname;
于 2012-12-27T14:00:09.857 回答