You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
747 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>购物车</title>
</head>
<body>
<h1>购物车</h1>
<div id="cart"></div>
<h2>添加商品到购物车</h2>
<form id="add-to-cart-form">
<label>
商品ID
<input type="number" id="add-product-id">
</label>
<label>
数量:
<input type="number" id="add-quantity">
</label>
<button type="submit">添加到购物车</button>
</form>
<h2>从购物车中移除商品</h2>
<form id="remove-from-cart-form">
<label>
商品ID
<input type="number" id="remove-product-id">
</label>
<button type="submit">从购物车中移除</button>
</form>
<script src="main.js"></script>
</body>
</html>