使用jQuery實(shí)現(xiàn)購物車結(jié)算功能
本文實(shí)例為大家分享了jQuery實(shí)現(xiàn)購物車結(jié)算功能展示的具體代碼,供大家參考,具體內(nèi)容如下
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<script type="text/javascript" src="js/jquery-1.8.3.js" ></script>
<script>
/*刪除*/
$(function(){
$(".blue").bind("click",function(){
$(this).parent().parent().remove();
totalPrice();
});
/*當(dāng)鼠標(biāo)離開文本框時,獲取當(dāng)前值,調(diào)用totalPrice()函數(shù)進(jìn)行結(jié)算*/
$(".shopping_product_list_5 input").bind("blur",function(){
var t = $(this).val();
totalPrice();
});
var allPrice = 0;
var allReduce = 0;
var allCount = 0;
$("#myTableProduct tr").each(function(){ /*循環(huán)購物車列表的每一行*/
var num = parseInt($(this).find(".shopping_product_list_5 input").val()); /*獲取文本框中數(shù)量值*/
var price = parseFloat($(this).find(".shopping_product_list_4 label").text()); /* 獲取商品價格*/
var total = price * num;
allPrice += total; /*計算所有商品的總價格*/
/*獲取節(jié)省的金額*/
var reduce = parseFloat($(this).find(".shopping_product_list_3 label").text()) - parseFloat($(this).find(".shopping_product_list_4 label").text());
var reducePrice = reduce*num;
allReduce +=reducePrice;
/*獲取積分*/
var count = parseFloat($(this).find(".shopping_product_list_2 label").text());
allCount +=count;
});
$("#product_total").text(allPrice.toFixed(2)); /*填寫計算結(jié)果,其中利用toFixed()函數(shù)保留兩位小數(shù)*/
$("#product_save").text(allReduce.toFixed(2));
$("#product_integral").text(allCount.toFixed(2));
});
function totalPrice(){
var allPrice = 0;
var allReduce = 0;
var allCount = 0;
$("#myTableProduct tr").each(function(){
var num = parseInt($(this).find(".shopping_product_list_5 input").val());
var price = parseFloat($(this).find(".shopping_product_list_4 label").text());
var total = price * num;
allPrice += total;
var reduce = parseFloat($(this).find(".shopping_product_list_3 label").text()) - parseFloat($(this).find(".shopping_product_list_4 label").text());
var reducePrice = reduce*num;
allReduce +=reducePrice;
var count = parseFloat($(this).find(".shopping_product_list_2 label").text());
allCount +=count;
});
$("#product_total").text(allPrice.toFixed(2));
$("#product_save").text(allReduce.toFixed(2));
$("#product_integral").text(allCount.toFixed(2));
}
</script>
</head>
<body>
<div class="shopping_list_top">您已選購以下商品</div>
<div class="shopping_list_border">
<table width="100%" border="1px solid #ccc" >
<tr class="shopping_list_title" >
<td class="shopping_list_title_1">商品名</td>
<td class="shopping_list_title_2">單品積分</td>
<td class="shopping_list_title_3">市場價</td>
<td class="shopping_list_title_4">當(dāng)當(dāng)價</td>
<td class="shopping_list_title_5">數(shù)量</td>
<td class="shopping_list_title_6">刪除</td>
</tr>
</table>
<table width="100%" border="1px solid #ccc" id="myTableProduct">
<tr class="shopping_product_list" id="shoppingProduct_01">
<td class="shopping_product_list_1"><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="blue">私募(首部披露資本博弈秘密的金融...</a></td>
<td class="shopping_product_list_2"><label>189</label></td>
<td class="shopping_product_list_3">¥<label>32.00</label></td>
<td class="shopping_product_list_4">¥<label>18.90 </label>(59折)</td>
<td class="shopping_product_list_5"><input type="text" value="1"/></td>
<td class="shopping_product_list_6"><a href="javascript:void(0)" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="blue">刪除</a></td>
</tr>
<tr class="shopping_product_list" id="shoppingProduct_02">
<td class="shopping_product_list_1"><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="blue"> 小團(tuán)圓(張愛玲最神秘小說遺稿)</a></td>
<td class="shopping_product_list_2"><label>173</label></td>
<td class="shopping_product_list_3">¥<label>28.00</label></td>
<td class="shopping_product_list_4">¥<label>17.30</label>(62折)</td>
<td class="shopping_product_list_5"><input type="text" value="1"/></td>
<td class="shopping_product_list_6"><a href="javascript:void(0)" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="blue">刪除</a></td>
</tr>
<tr class="shopping_product_list" id="shoppingProduct_03">
<td class="shopping_product_list_1"><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="blue">不抱怨的世界(暢銷全球80國的世界...</a></td>
<td class="shopping_product_list_2"><label>154</label></td>
<td class="shopping_product_list_3">¥<label>24.80</label></td>
<td class="shopping_product_list_4">¥<label>15.40</label> (62折)</td>
<td class="shopping_product_list_5"><input type="text" value="2"/></td>
<td class="shopping_product_list_6"><a href="javascript:void(0)" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="blue">刪除</a></td>
</tr>
<tr class="shopping_product_list" id="shoppingProduct_04">
<td class="shopping_product_list_1"><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="blue">福瑪特雙桶洗衣機(jī)XPB20-07S</a></td>
<td class="shopping_product_list_2"><label>358</label></td>
<td class="shopping_product_list_3">¥<label>458.00</label></td>
<td class="shopping_product_list_4">¥<label>358.00</label> (78折)</td>
<td class="shopping_product_list_5"><input type="text" value="1"/></td>
<td class="shopping_product_list_6"><a href="javascript:void(0)" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="blue">刪除</a></td>
</tr>
<tr class="shopping_product_list" id="shoppingProduct_05">
<td class="shopping_product_list_1"><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="blue">PHP和MySQL Web開發(fā) (原書第4版)</a></td>
<td class="shopping_product_list_2"><label>712</label></td>
<td class="shopping_product_list_3">¥<label>95.00</label></td>
<td class="shopping_product_list_4">¥<label>71.20</label> (75折)</td>
<td class="shopping_product_list_5"><input type="text" value="1"/></td>
<td class="shopping_product_list_6"><a href="javascript:void(0)" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="blue">刪除</a></td>
</tr>
<tr class="shopping_product_list" id="shoppingProduct_06">
<td class="shopping_product_list_1"><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="blue">法布爾昆蟲記</a>(再買¥68.30即可參加“滿199元減10元現(xiàn)金”活動)</td>
<td class="shopping_product_list_2"><label>10</label></td>
<td class="shopping_product_list_3">¥<label>198.00</label></td>
<td class="shopping_product_list_4">¥<label>130.70</label> (66折)</td>
<td class="shopping_product_list_5"><input type="text" value="1"/></td>
<td class="shopping_product_list_6"><a href="javascript:void(0)" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="blue">刪除</a></td>
</tr>
</table>
<div class="shopping_list_end">
<div><a id="removeAllProduct" href="javascript:void(0);" rel="external nofollow" >清空購物車</a></div>
<ul>
<li class="shopping_list_end_1"><input name="" type="image" src="images/shopping_balance.gif"/></li>
<li class="shopping_list_end_2">¥<label id="product_total"></label></li>
<li class="shopping_list_end_3">商品金額總計:</li>
<li class="shopping_list_end_4">您共節(jié)省金額:¥<label class="shopping_list_end_yellow" id="product_save"></label><br/>
可獲商品積分:<label class="shopping_list_end_yellow" id="product_integral"></label>
</li>
</ul>
</div>
</div>
</body>
</html>
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
- jQuery實(shí)現(xiàn)購物車多物品數(shù)量的加減+總價計算
- jQuery實(shí)現(xiàn)加入購物車飛入動畫效果
- 基于JQuery實(shí)現(xiàn)的類似購物商城的購物車
- JQuery實(shí)現(xiàn)的購物車功能(可以減少或者添加商品并自動計算價格)
- 純jquery實(shí)現(xiàn)模仿淘寶購物車結(jié)算
- jQuery實(shí)現(xiàn)購物車計算價格功能的方法
- jQuery實(shí)現(xiàn)購物車數(shù)字加減效果
- jQuery實(shí)現(xiàn)類似淘寶購物車全選狀態(tài)示例
- jQuery+HTML5加入購物車代碼分享
- jQuery仿天貓實(shí)現(xiàn)超炫的加入購物車
相關(guān)文章
JQuery 風(fēng)格的HTML文本轉(zhuǎn)義
astinus開發(fā)過程中,我自己就在不斷的使用。有次貼了一些JS代碼進(jìn)去,于是頁面顯示錯誤。顯然,把源代碼直接放進(jìn)html文本了——好吧,從05年轉(zhuǎn)去做網(wǎng)游以后,一直沒有正經(jīng)的做過web了。2009-07-07
html5的自定義data-*屬性和jquery的data()方法的使用示例
人們總喜歡往HTML標(biāo)簽上添加自定義屬性來存儲和操作數(shù)據(jù),這就是為什么在HTML5規(guī)范里增加了一個自定義data屬性,你可以拿它做很多有用的事情2013-08-08
JQuery對表格進(jìn)行操作的常用技巧總結(jié)
這篇文章主要介紹了JQuery對表格進(jìn)行操作的常用技巧,需要的朋友可以參考下2014-04-04
jQuery實(shí)現(xiàn)加入購物車飛入動畫效果
當(dāng)您在電商購物網(wǎng)站瀏覽中意的商品時,您可以點(diǎn)擊頁面中的“加入購物車”按鈕即可將商品加入的購物車中。本文介紹借助一款基于jQuery的動畫插件,點(diǎn)擊加入購物車按鈕時,實(shí)現(xiàn)商品將飛入到右側(cè)的購物車中的效果。2015-03-03
jQuery使用fadeout實(shí)現(xiàn)元素漸隱效果的方法
這篇文章主要介紹了jQuery使用fadeout實(shí)現(xiàn)元素漸隱效果的方法,實(shí)例分析了jQuery中fadeout方法的使用技巧,具有一定參考借鑒價值,需要的朋友可以參考下2015-03-03
jQuery實(shí)現(xiàn)移動端扭蛋機(jī)抽獎
這篇文章主要為大家詳細(xì)介紹了jQuery實(shí)現(xiàn)移動端扭蛋機(jī)抽獎,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下2020-11-11
jQuery中的ready函數(shù)與window.onload誰先執(zhí)行
這篇文章主要介紹了jquery中ready函數(shù)與window.onload函數(shù)的區(qū)別,別講解了他們各自執(zhí)行的時機(jī),通俗易懂,需要的朋友可以參考下。2016-06-06

