HTML5和Javascript:window.location杀死localStorage?

时间:2013-04-19 17:33:29

标签: javascript json html5 local-storage

我正在尝试使用以下window.location重定向到另一个页面,但是正在删除浏览器localStorage中的数据。我正在使用JSON stringify将数据存储到数组中:

function replaceCartStorage(arr){
    if(arr.length==0){
        localStorage.removeItem("cart");
        window.location = "http://localhost/cw2/Basket.html";
    }else{
        localStorage["cart"] = JSON.stringify(arr);
        window.location = "http://localhost/cw2/Basket.html";
    }
}

0 个答案:

没有答案