如何从本地存储中获取网站名称

时间:2019-03-22 18:21:22

标签: javascript local-storage

我想从本地存储中获取网站名称。通常,我们使用localstorage.getItem(key)来获取localstorage内部的值。但是我想要链接名称本身。

例如,从图像中,我想要https://stackoverflow.com作为输出。

Local Storage Image Click here

1 个答案:

答案 0 :(得分:2)

您只需使用window.location从URL中获取名称即可。您可以改为这样做

var protocol = window.location.protocol
var hostname = window.location.hostname

var url = protocol+"//"+hostname
console.log(url)