Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法识别客户端在地址栏中键入的页面地址。 在发送请求之前,我需要此信息。 大概在活动中onbeforeunload
onbeforeunload
除非导航是由页面中的某些内容(例如单击链接)引起的,否则前一页无法找出用户导航到的位置。
如果可能的话,它将允许一些严重的隐私侵犯。
在 Javascript 中,您应该能够从document.location, 获取完整的 URL(var URLstring = document.location;例如)。
document.location
var URLstring = document.location;