主頁(yè) > 知識(shí)庫(kù) > 使用Ajax、json實(shí)現(xiàn)京東購(gòu)物車(chē)結(jié)算界面的數(shù)據(jù)交互實(shí)例

使用Ajax、json實(shí)現(xiàn)京東購(gòu)物車(chē)結(jié)算界面的數(shù)據(jù)交互實(shí)例

熱門(mén)標(biāo)簽:Mysql連接數(shù)設(shè)置 服務(wù)器配置 團(tuán)購(gòu)網(wǎng)站 電子圍欄 Linux服務(wù)器 科大訊飛語(yǔ)音識(shí)別系統(tǒng) 銀行業(yè)務(wù) 阿里云


div class="goodsList_menu">
   div class="goodsList">
    div class="goodsListfl">
     input class="fl" style="margin:15px 10px 0 10px;" type="checkbox" name="" />
     ul>
      li>全選/li>
      li>商品/li>
     /ul>
    /div>
    div class="goodsListfr fr">
     ul>
      li>單價(jià)/li>
      li class="w100">數(shù)量/li>
      li class="w100">小計(jì)/li>
      li>操作/li>
     /ul>
    /div>
   /div>
   !--內(nèi)容-->
   div class='goodsListbox'>/div>
   div class="checkout">
    div class="checkoutleft">
     input class="fl" style="margin:21px 10px 0 10px;" type="checkbox" name="" />
     ul>
      li>全選/li>
      li>刪除選中產(chǎn)品/li>
     /ul>
    /div>
    div class="checkoutright fr">
     span>總價(jià):b>¥/b>/span>span class="checkoutSum">0/span>
     input type="button" value="去結(jié)算" />
    /div>
   /div>
  /div>
body,html,ul,li,a{
 margin:0;padding:0;font-family:"microsoft yahei";list-style:none;text-decoration:none;
}
.fl{
 float:left;
}
.fr{
 float:right;
}
.f12{
 font-size:12px;
}
.disl{
 display:inline-block;
}
.w100{
 width:100px;
}
.fw{
 font-weight:bold;
}
.goodsList_menu{
 width:990px;height:45px;background:#f3f3f3;margin:0 auto;line-height:45px;
 font-size:14px;color:#333;border:1px solid #ddd;
}
.goodsList_menu .goodsListfl ul li{
 float:left;margin-right:80px;cursor:pointer;
}
.goodsList_menu .goodsListfr ul li{
 float:left;margin-right:37px;text-align:center;cursor:pointer;
}
/*內(nèi)容*/
.goodsList_content{
 width:100%;height:80px;border-bottom:1px solid #eee;padding:20px 0;margin-top:40px;
}
.goodsList_content .disl{
 line-height:20px;width:300px;cursor:pointer;margin-left:10px;
}
.goodsList_content .disl span:hover{
 color:#e4393c;
}
.goodsList_content .disl p:hover{
 color:#e4393c;
}
.goodsListnum .listNum{
 widows:45px;height:21px;width:50px;border:1px solid #eee;text-align:center;
 outline:none;
}
.goodsListnum ul li{
 float:left;margin-right:30px;text-align:center;cursor:pointer;
}
.goodsListnum ul li a{
 border:1px solid #ddd;padding:2px 7px;color:#000;
}
.goodsListnum ul li p{
 line-height:0;color:#666;font-size:12px;margin-top:-2px;
}
.buy_goods p{
 background:url(../images/arrow.png)no-repeat;padding-left:30px;background-position:-20px -20px;
}
.buy_goods{
 position:relative;
}
/*底部結(jié)賬*/
.checkout{
 height:55px;border:1px solid #eee;margin-top:20px;line-height:55px;
}
.checkout .checkoutleft ul li{
 float:left;margin-right:10px;cursor:pointer;
}
.checkout .checkoutSum{
 font-weight:bold;font-size:18px;color:#e64346;
}
.checkout .checkoutright input{
 border:none;color:#fff;outline:none;width:100px;height:55px;line-height:55px;
 font-size:20px;background:#e64346;margin-left:50px;cursor:pointer;
}
script>
   $.ajax({
    type:"get",
    url:"jd.json",
    dataType:"json",
    success:function(data){
     var list = data.list;//拿到list數(shù)組
     //console.log(list);
     for(var i=0;ilist.length;i++){
      var numArray = list[i];
      numArray.price = (numArray.price).toFixed(2);
      var text = "div class='goodsList_content'>div class='fl buy_goods'>"+
         "input class='fl' style='margin:15px 10px 0 10px;' type='checkbox' name='' />"+
         "img align='top' src='images/1.jpg' />div class='disl'>"+
         "span>"+numArray.description+"/span>p class='f12'>購(gòu)買(mǎi)禮品服務(wù)/p>/div>"+
         "div class='disl' style='width:auto;position:absolute;right:-100px;top:0;'>"+
         "span>"+numArray.color+"/span>/div>/div>"+
         "div class='fr goodsListnum' style='margin-top:-12px;'>"+
         "ul>li>b>¥/b>span class='fw'>"+numArray.price+"/span>/li>"+
         "li class='w100'>a class='minus' onClick='minus(this);' href='javascript:void(0);'>-/a>"+
         "input value='1' class='listNum' />a class='add' onClick='add(this)' href='javascript:void(0);'>+/a>p>有貨/p>/li>"+
         "li class='w100'>b>¥/b>span id='sub' class='fw'>"+numArray.price*numArray.quentity+"/span>/li>"+
         "li>a style='border:none;color:#666;' href='javascript:void(0);'>刪除/a>/li>"+
         "/ul>/div>/div>"
      $(text).appendTo(".goodsListbox");
     }
    },
    error:function(){
     console.log("調(diào)用數(shù)據(jù)失??!");
    }
   });
   var listNum,price,sums,sub1,sub2;
   function add(obj){
    listNum = $(obj).prev().val();//input值
    listNum = parseInt(listNum);
    var num = parseInt(listNum+1);//input值每次+1
    $(obj).prev().val(num);
    price = $(obj).parent().prev().children('span').text();//找到單價(jià)
    price = parseInt(price);//轉(zhuǎn)換成number類型
    price = price.toFixed(2);
    sums = $(obj).parent().next().children('span').text()//找到總金額
    sums = parseInt(sums);
    console.log(typeof sums);
    $(obj).parent().next().children('span').text(price*num);

    sub1 = $(".goodsList_content:eq(0)").find("#sub").text();
    sub2 = $(".goodsList_content:eq(1)").find("#sub").text();
    sub1 = parseInt(sub1);
    sub2 = parseInt(sub2);
    var res = $(".checkoutright .checkoutSum").text((sub1+sub2).toFixed(2));
   }
   
   function minus(obj){
    listNum = $(obj).next().val();
    listNum = parseInt(listNum);
    if(listNum=1){
     listNum==1;
    }else{
     --listNum;
    }
    $(obj).next().val(listNum);
    price = $(obj).parent().prev().children('span').text();//找到單價(jià)
    price = parseInt(price);//轉(zhuǎn)換成number類型
    price = price.toFixed(2);
    sums = $(obj).parent().next().children('span').text()//找到總金額
    sums = parseInt(sums);
    $(obj).parent().next().children('span').text(price*listNum);
    $(".checkoutright .checkoutSum").text(price*listNum);
    sub1 = $(".goodsList_content:eq(0)").find("#sub").text();
    sub2 = $(".goodsList_content:eq(1)").find("#sub").text();
    sub1 = parseInt(sub1);
    sub2 = parseInt(sub2);
    $(".checkoutright .checkoutSum").text(sub1+sub2);
   }
  /script>

因?yàn)闀r(shí)間原因,代碼沒(méi)有進(jìn)行優(yōu)化,但是效果還是先給大家呈現(xiàn)出來(lái)。希望可以幫到更多的技術(shù)愛(ài)好者和朋友!如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!

您可能感興趣的文章:
  • Java中使用json與前臺(tái)Ajax數(shù)據(jù)交互的方法
  • PHP JSON格式數(shù)據(jù)交互實(shí)例代碼詳解
  • json前后端數(shù)據(jù)交互相關(guān)代碼

標(biāo)簽:廣元 棗莊 衡水 江蘇 蚌埠 大理 衢州 萍鄉(xiāng)

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《使用Ajax、json實(shí)現(xiàn)京東購(gòu)物車(chē)結(jié)算界面的數(shù)據(jù)交互實(shí)例》,本文關(guān)鍵詞  ;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 收縮
    • 微信客服
    • 微信二維碼
    • 電話咨詢

    • 400-1100-266