首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

javascript怎样获取window.history中记录的多个URL?解决办法

2012-02-27 
javascript怎样获取window.history中记录的多个URL?如题[解决办法]window.history(-1)window.history(-2)

javascript怎样获取window.history中记录的多个URL?
如题

[解决办法]
window.history(-1);
window.history(-2);
window.history(1);
.....
[解决办法]
微软的答复
For security reasons, the history object does not expose the actual URLs in the browser history.

你可以用
document.referrer
取得上一个地址
或者history.go back 之类的
[解决办法]
后台: if (!this.IsPostBack) { ViewState[ "url "] = Request.UrlReferrer.ToString(); }
[解决办法]
视图到js.就很容易了var url = " <%=ViewState[ "url "].ToString()%> ";

热点排行