jQuery購物車背景介紹
jQuery購物車背景是一款非常實用的插件,可以幫助你為你的網站或應用程序添加一些很酷的購物車效果。這個插件可以讓你很容易地向你的用戶展示他們的購物車,并且可以讓他們很容易地添加或刪除商品。
$(function(){ // 添加商品到購物車 $('.add-to-cart').click(function(){ var item = $(this).closest('.item'); var img = item.find('.item-img').attr('src'); var name = item.find('.item-name').text(); var price = item.find('.item-price').text(); var cartItem = $('<li>').addClass('cart-item') .append($('<img>').attr('src', img)) .append($('<h3>').text(name)) .append($('<span>').text(price)) .append($('<a>').addClass('remove-item').html('×')); $('.cart-items').append(cartItem); updateCartTotal(); }); // 從購物車中刪除商品 $('.cart-items').on('click', '.remove-item', function(){ $(this).closest('.cart-item').remove(); updateCartTotal(); }); function updateCartTotal() { var total = 0; $('.cart-item').each(function(){ var price = $(this).find('span').text(); price = price.replace('$', ''); total += parseFloat(price); }); $('.cart-total').text('$' + total.toFixed(2)); } });
以上就是jQuery購物車背景的示例代碼。通過這些代碼,我們可以添加商品到購物車,也可以從購物車中刪除商品。我們還可以計算購物車中總價值,讓用戶隨時了解他們購物的情況。
如果你正在開發網上商城或電子商務應用程序,這個插件將會非常有用,讓你的用戶有更好的購物體驗。