之前剛好坐了一個幣值轉換的網頁 分享一下部分CODE
currencySelect.addEventListener("change", function () {
convertToSelect.innerHTML = "";
const originalCurrency = currencySelect.value;
for (const currency in exchangeRates[originalCurrency]) {
const option = document.createElement("option");
option.value = currency;
option.textContent = currency;
convertToSelect.appendChild(option);
}
});
convertButton.addEventListener("click", function () {
const originalCurrency = currencySelect.value;
const convertToCurrency = convertToSelect.value;
const amount = parseFloat(document.getElementById("price-input").value);
// 貨幣轉換
const rate = 1 / exchangeRates[convertToCurrency][originalCurrency]; // 取倒数
const converted = amount * rate;
convertedAmount.textContent = `${amount} ${originalCurrency} = ${converted.toFixed(2)} ${convertToCurrency}`;
});