首頁  >  文章  >  web前端  >  jQuery實作購物車多物品數量的加減 總價計算_jquery

jQuery實作購物車多物品數量的加減 總價計算_jquery

WBOY
WBOY原創
2016-05-16 16:45:481354瀏覽
複製代碼 代碼如下:

//W3C/1. Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


jQuery實現購物車多物品數量的加減總價計算

<script> <BR>$(function(){ <BR>$(".add").click(function (){ <BR>var t=$(this).parent().find('input[class*=text_box]'); <BR>t.val(parseInt(t.val()) 1) <BR>setTotal(); <BR>}) <BR>$(".min").click(function(){ <BR>var t=$(this).parent().find('input[class*= text_box]'); <BR>t.val(parseInt(t.val())-1) <BR>if(parseInt(t.val())<0){ <BR>t.val(0); <BR>} <BR>setTotal(); <BR>}) <BR>function setTotal(){ <BR>var s=0; <BR>$("#tab td").each(function(){each(function(){each <BR>s =parseInt($(this).find('input[class*=text_box]').val())*parseFloat($(this).find('span[class*=price]'). text()); <BR>}); <BR>$("#total").html(s.toFixed(2)); <BR>} <BR>setTotal(); <br><br>} ) <BR></script>









單價:1.50





單價:3.95





總價:




陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn