Save and load shopping cart with LocalStorage
问题 I have the following code: inames = []; iqtyp = []; iprice = []; function bestel() { inames.push(document.getElementById('artikel').innerHTML); iqtyp.push(parseInt(document.getElementById('hoeveel').value)); iprice.push(parseInt(document.getElementById('prijs').innerHTML)); displayCart(); } function displayCart() { cartdata = '<table><tr><th>Product Name</th><th>Quantity</th><th>Price</th><th>Total</th></tr>'; total = 0; for (i = 0; i < inames.length; i++) { total += iqtyp[i] * iprice[i];