Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="zh-TW">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>比價網頁</title>
- <style>
- body {
- text-align: center;
- font-family: Arial, sans-serif;
- padding: 20px;
- }
- table {
- border-collapse: collapse;
- width: 100%;
- max-width: 800px;
- margin: 20px auto 0;
- }
- table, th, td {
- border: 1px solid black;
- text-align: center;
- padding: 8px;
- }
- th {
- background-color: #f2f2f2;
- }
- .lowest-price {
- font-weight: bold;
- color: red;
- }
- th, td {
- width: 33.33%;
- }
- .total-price, .quantity {
- width: 100%;
- box-sizing: border-box;
- padding: 10px;
- margin: 0;
- font-size: 16px;
- }
- .unit-price {
- font-size: 16px;
- }
- input[type="number"] {
- -moz-appearance: textfield;
- }
- input::-webkit-outer-spin-button,
- input::-webkit-inner-spin-button {
- -webkit-appearance: none;
- margin: 0;
- }
- #reset-button {
- margin-top: 20px;
- padding: 10px 20px;
- font-size: 16px;
- background-color: #f2f2f2;
- border: 1px solid #ccc;
- cursor: pointer;
- }
- #reset-button:hover {
- background-color: #e6e6e6;
- }
- @media screen and (max-width: 600px) {
- table {
- font-size: 14px;
- }
- .total-price, .quantity, .unit-price {
- font-size: 14px;
- }
- .total-price, .quantity {
- padding: 8px;
- }
- #reset-button {
- font-size: 14px;
- padding: 8px 16px;
- }
- }
- </style>
- </head>
- <body>
- <h2>商品比價表</h2>
- <table id="price-table">
- <tr>
- <th>售價</th>
- <th>容量 or 重量</th>
- <th>每單位價格</th>
- </tr>
- <tr>
- <td><input type="number" class="total-price" oninput="calculateUnitPrice(0)" /></td>
- <td><input type="number" class="quantity" oninput="calculateUnitPrice(0)" /></td>
- <td class="unit-price"></td>
- </tr>
- <tr>
- <td><input type="number" class="total-price" oninput="calculateUnitPrice(1)" /></td>
- <td><input type="number" class="quantity" oninput="calculateUnitPrice(1)" /></td>
- <td class="unit-price"></td>
- </tr>
- <tr>
- <td><input type="number" class="total-price" oninput="calculateUnitPrice(2)" /></td>
- <td><input type="number" class="quantity" oninput="calculateUnitPrice(2)" /></td>
- <td class="unit-price"></td>
- </tr>
- <tr>
- <td><input type="number" class="total-price" oninput="calculateUnitPrice(3)" /></td>
- <td><input type="number" class="quantity" oninput="calculateUnitPrice(3)" /></td>
- <td class="unit-price"></td>
- </tr>
- <tr>
- <td><input type="number" class="total-price" oninput="calculateUnitPrice(4)" /></td>
- <td><input type="number" class="quantity" oninput="calculateUnitPrice(4)" /></td>
- <td class="unit-price"></td>
- </tr>
- </table>
- <button id="reset-button">再來一次</button>
- <script>
- function calculateUnitPrice(row) {
- var totalPrice = parseFloat(document.getElementsByClassName('total-price')[row].value);
- var quantity = parseFloat(document.getElementsByClassName('quantity')[row].value);
- if (isNaN(totalPrice) || isNaN(quantity) || quantity <= 0) {
- document.getElementsByClassName('unit-price')[row].innerText = '';
- return;
- }
- var unitPrice = totalPrice / quantity;
- document.getElementsByClassName('unit-price')[row].innerText = unitPrice.toFixed(2);
- highlightLowestPrice();
- }
- function highlightLowestPrice() {
- var unitPrices = document.getElementsByClassName('unit-price');
- var lowestPrice = Infinity;
- var lowestIndexes = [];
- // 找出最低價格及其索引
- for (var i = 0; i < unitPrices.length; i++) {
- if (unitPrices[i].innerText !== '') {
- var price = parseFloat(unitPrices[i].innerText);
- if (price < lowestPrice) {
- lowestPrice = price;
- lowestIndexes = [i];
- } else if (price === lowestPrice) {
- lowestIndexes.push(i);
- }
- }
- }
- // 將最低價格的單元格標記為紅色粗體
- for (var j = 0; j < unitPrices.length; j++) {
- if (lowestIndexes.includes(j)) {
- unitPrices[j].classList.add('lowest-price');
- } else {
- unitPrices[j].classList.remove('lowest-price');
- }
- }
- }
- function resetTable() {
- var totalPrices = document.getElementsByClassName('total-price');
- var quantities = document.getElementsByClassName('quantity');
- var unitPrices = document.getElementsByClassName('unit-price');
- for (var i = 0; i < totalPrices.length; i++) {
- totalPrices[i].value = '';
- quantities[i].value = '';
- unitPrices[i].innerText = '';
- unitPrices[i].classList.remove('lowest-price');
- }
- }
- document.getElementById('reset-button').addEventListener('click', resetTable);
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement