var cookieValue = document.getElementById("demo");
var value = cookieValue .getAttribute('value');
if(typeof(Storage)!=="undefined")
{
alert(value);
localStorage.setItem = ("GetData" , value);
alert(localStorage.setItem);
}
function loading()
{
alert("coming");
var allcookies = localStorage.getItem('GetData');
alert(allcookies);
}
以上是我设置的方式localStorage.setItem
,我正在获取 LocalStorage。但是在我没有得到输出的地方,它显示为 Null。请建议我任何解决方案。