从localstorage更新变量

时间:2017-04-08 10:21:49

标签: javascript jquery

在刷新页面时,TotalPrice的值为真,直到单击按钮,TotalPrice的值从0开始。那么现在如何将新价格添加到TotalPrice

/********************************************************************/
var price=0;
var TotalPrice=localStorage.getItem("x");
         $("#total").html(TotalPrice);
$(".addToCard").on("click",function(){
            if($(this).text()=='add to cart')
            {$(this).html("remove from cart");
                var clickedButtonIndex=( $('button').index(this) );
                clickedButtonIndex=clickedButtonIndex-2;
                price +=resp2[clickedButtonIndex].price;
                /************adding to local storage**************/
                $("#total").html(price);
                localStorage.setItem("x",price);

0 个答案:

没有答案