我几乎已经这样做,但没有足够大脑力来完成最后步骤。
这是目前发生的情况。
1) Page loads 2) When a link is clicked, a hash is added to the url with the page id. This is saved to the browser history.
如果我把Ajax电话附在连接功能上,那我就会听起来。 问题正从ur中getting。 这里是我所拥有的。
var id = urlToId(window.location);
if (id != undefined) {
go(id);
}
function urlToId(url) { alert(url);
var segments = url.split( # ); alert(segments);
var id = segments[1];
return id;
}
alert(url) = http://localhost/site/index.php?p=1#1 -- Javascript Error: url.split is not a function.
我感到,如果我能刚刚摆脱贾瓦文的错误,那我就应该成为黄金。