中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

jquery實現購物車數量加減,價格計算功能

發布時間:2020-06-10 10:22:24 來源:網絡 閱讀:10471 作者:frwupeng517 欄目:web開發

HTML代碼:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="renderer" content="webkit">
    <title>A03號桌</title>
    <link rel="stylesheet" href="resources/css/main.css">
</head>
<body>
    <!--購物車-->
    <div class="shopCart"> 
    <!--可以在table外面套一個div寫死寬高并設置overflow-y:scroll;,出現大量內容時,讓table縱向滾動-->
       <div class="cartBox"> 
            <table class="cart">
                <thead>
                <tr>
                    <th>菜品名稱</th>
                    <th>數量</th>
                    <th>單價</th>
                    <th>價格</th>
                </tr>
                </thead>
                <tbody>
                <tr>
                    <td>大閘蟹</td>
                    <td>
                        <button class="add">+</button>
                        <span class="count">1</span>
                        <button class="reduce">-</button>
                    </td>
                    <td>
                        ¥<span class="price">68.00</span>
                    </td>
                    <td>
                        ¥<span class="sub_total">68.00</span>
                    </td>
                </tr>
                <tr>
                    <td>在天愿作比翼鳥</td>
                    <td>
                        <button class="add">+</button>
                        <span class="count">1</span>
                        <button class="reduce">-</button>
                    </td>
                    <td>
                        ¥<span class="price">68.00</span>
                    </td>
                    <td>
                        ¥<span class="sub_total">68.00</span>
                    </td>
                </tr>
                <tr>
                    <td>紅嘴綠鸚哥</td>
                    <td>
                        <button class="add">+</button>
                        <span class="count">1</span>
                        <button class="reduce">-</button>
                    </td>
                    <td>
                        ¥<span class="price">68.00</span>
                    </td>
                    <td>
                        ¥<span class="sub_total">68.00</span>
                    </td>
                </tr>
                </tbody>
            </table>
        </div>

        <ul class="totalInfo clearfix">
            <li>
                <span class="total">
                合計:<i>¥</i><b>242.00</b>
                </span>
            </li>
            <li>
                <button class="btn-save">保存</button>
            </li>
        </ul>
    </div>


<script src="resources/js/jquery-1.8.3.min.js"></script>
<script src="resources/js/shopCart.js"></script>
</body>
</html>


JS代碼:

/****點擊增加按鈕****/
$('.add').click(function(){
    //修改數量
    var n=$(this).next().html();
    var num=parseInt(n)+1;
    $(this).next().html(num);
    //計算價格
    var c= $(this).parent().siblings().children('.price').html();
    parseInt(c);
    var subPrice = num * c;
    var sub_price = subPrice.toFixed(2); //保留小數點后面兩位小數
    $(this).parent().siblings().children('.sub_total').html(sub_price);

    //計算總價
    var total=0;
    $('.sub_total').each(function(){
        var price=parseInt($(this).html());
        total+=price;
        var total_price = total.toFixed(2);
        $('.total b').html(total_price);
    });
});


/****點擊減少按鈕****/
$('.reduce').click(function(){
    //修改數量
    var n=$(this).prev().html();
    var num=parseInt(n)-1;
    if(num==0){return;}//數量減到0就能再減了
    $(this).prev().html(num);

    //計算價格
    var c= $(this).parent().siblings().children('.price').html();
    parseInt(c);
    var subPrice = num * c;
    subPrice.toFixed(2);
    var sub_price = subPrice.toFixed(2);
    $(this).parent().siblings().children('.sub_total').html(sub_price);

    //計算總價
    var total=0;
    $('.sub_total').each(function(){
        var price=parseInt($(this).html());
        total+=price;
        var total_price = total.toFixed(2);
        $('.total b').html(total_price);
    });
});


考慮到篇幅問題,沒有貼出CSS代碼,最終頁面截圖如下:

jquery實現購物車數量加減,價格計算功能

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

浠水县| 光山县| 浙江省| 都昌县| 化德县| 永吉县| 班玛县| 四川省| 垦利县| 黔西| 伊金霍洛旗| 蒲城县| 宜春市| 陕西省| 桐庐县| 嘉兴市| 南京市| 汕尾市| 遵义县| 灵台县| 修文县| 黄陵县| 江口县| 龙山县| 获嘉县| 鸡西市| 乌兰察布市| 永清县| 尼木县| 德庆县| 嫩江县| 曲周县| 台北县| 沾化县| 偏关县| 浏阳市| 买车| 天长市| 仪陇县| 博湖县| 安福县|