Creating a Shopping Cart using only HTML/JavaScript

前端 未结 3 356
南笙
南笙 2020-12-24 03:59

I\'m not sure what to do in order to complete this project. I need to create a shopping cart that uses only one HTML page. I have the table set up showing what is being so

3条回答
  •  攒了一身酷
    2020-12-24 04:31

    I think it is a better idea to start working with a raw data and then translate it to DOM (document object model)

    I would suggest you to work with array of objects and then output it to the DOM in order to accomplish your task.

    You can see working example of following code at http://www.softxml.com/stackoverflow/shoppingCart.htm

    You can try following approach:

    //create array that will hold all ordered products
        var shoppingCart = [];
    
        //this function manipulates DOM and displays content of our shopping cart
        function displayShoppingCart(){
            var orderedProductsTblBody=document.getElementById("orderedProductsTblBody");
            //ensure we delete all previously added rows from ordered products table
            while(orderedProductsTblBody.rows.length>0) {
                orderedProductsTblBody.deleteRow(0);
            }
    
            //variable to hold total price of shopping cart
            var cart_total_price=0;
            //iterate over array of objects
            for(var product in shoppingCart){
                //add new row      
                var row=orderedProductsTblBody.insertRow();
                //create three cells for product properties 
                var cellName = row.insertCell(0);
                var cellDescription = row.insertCell(1);
                var cellPrice = row.insertCell(2);
                cellPrice.align="right";
                //fill cells with values from current product object of our array
                cellName.innerHTML = shoppingCart[product].Name;
                cellDescription.innerHTML = shoppingCart[product].Description;
                cellPrice.innerHTML = shoppingCart[product].Price;
                cart_total_price+=shoppingCart[product].Price;
            }
            //fill total cost of our shopping cart 
            document.getElementById("cart_total").innerHTML=cart_total_price;
        }
    
    
        function AddtoCart(name,description,price){
           //Below we create JavaScript Object that will hold three properties you have mentioned:    Name,Description and Price
           var singleProduct = {};
           //Fill the product object with data
           singleProduct.Name=name;
           singleProduct.Description=description;
           singleProduct.Price=price;
           //Add newly created product to our shopping cart 
           shoppingCart.push(singleProduct);
           //call display function to show on screen
           displayShoppingCart();
    
        }  
    
    
        //Add some products to our shopping cart via code or you can create a button with onclick event
        //AddtoCart("Table","Big red table",50);
        //AddtoCart("Door","Big yellow door",150);
        //AddtoCart("Car","Ferrari S23",150000);
    
    
    
    
    
    
    
    Products for sale
    Table
    Door
    Car
    Name Description Price

    Please have a look at following free client-side shopping cart:

    SoftEcart(js) is a Responsive, Handlebars & JSON based, E-Commerce shopping cart written in JavaScript with built-in PayPal integration.

    Documentation

    http://www.softxml.com/softecartjs-demo/documentation/SoftecartJS_free.html

    Hope you will find it useful.

提交回复
热议问题