我想从本地存储中获取网站名称。通常,我们使用localstorage.getItem(key)来获取localstorage内部的值。但是我想要链接名称本身。
例如,从图像中,我想要https://stackoverflow.com作为输出。
答案 0 :(得分:2)
您只需使用window.location
从URL中获取名称即可。您可以改为这样做
var protocol = window.location.protocol
var hostname = window.location.hostname
var url = protocol+"//"+hostname
console.log(url)