如何确定用户试图返回的页面的 url?例如,如果我目前在:
http://site.com/forward和我之前访问的上一页是http://site.com我如何获取 url http://site.com
window.onbeforeunload = function (e) {
//get url
}
这在 JavaScript 中可能吗?
如何确定用户试图返回的页面的 url?例如,如果我目前在:
http://site.com/forward和我之前访问的上一页是http://site.com我如何获取 url http://site.com
window.onbeforeunload = function (e) {
//get url
}
这在 JavaScript 中可能吗?