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.
如何确定网站是否是历史上的第一项?由于安全原因,这不起作用:
if(window.history.item(0)==window.location.href)
出于安全原因,History 对象不允许非特权代码访问会话历史记录中其他页面的 URL,但它确实允许它浏览会话历史记录。
来自:Mozilla 开发者中心:window.history
你不能。
用户的浏览器历史记录是私人信息,无法使用 Javascript 读取。