所以我有一个像这样的加载函数的jQuery回调:
$(".editStoryLink").click(function() {
$(this).parent().siblings(".storyTitleDesc")
.load($(this).attr("href"), function(data) {
alert("the url that was just used above!");
});
return false;
});
如何访问我刚刚使用的 URL?