求购一个汇率的网站程序
RT类似:http://soltarot.com/ 同求。。 这个。。没有免费的? <!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>货币汇率转换器</title>
<script>
// 定义API的URL
const EXCHANGE_RATE_API_URL = 'https://api.exchangerate-api.com/v4/latest/USD';
function convertCurrency() {
// 获取用户输入的金额和选择的货币
var amount = document.getElementById('amount').value;
var fromCurrency = document.getElementById('fromCurrency').value;
var toCurrency = document.getElementById('toCurrency').value;
// 发起API请求获取汇率
fetch(EXCHANGE_RATE_API_URL)
.then(response => response.json())
.then(data => {
// 获取从货币到美元的汇率,然后从美元到目标货币的汇率
var rate = data.rates / data.rates;
// 计算转换后的金额
var convertedAmount = amount * rate;
// 显示转换结果
document.getElementById('result').innerText = '转换结果:' + convertedAmount.toFixed(2) + ' ' + toCurrency;
})
.catch(error => {
console.error('Error fetching exchange rates:', error);
alert('无法获取汇率数据,请稍后再试。');
});
}
</script>
</head>
<body>
<h1>货币汇率转换器</h1>
<form onsubmit="event.preventDefault(); convertCurrency();">
<label for="amount">输入金额:</label>
<input type="number" id="amount" step="any" required>
<br><br>
<label for="fromCurrency">从货币:</label>
<select id="fromCurrency">
<option value="USD">美元 (USD)</option>
<option value="CNY">人民币 (CNY)</option>
<option value="EUR">欧元 (EUR)</option>
<option value="JPY">日元 (JPY)</option>
</select>
<br><br>
<label for="toCurrency">到货币:</label>
<select id="toCurrency">
<option value="USD">美元 (USD)</option>
<option value="CNY">人民币 (CNY)</option>
<option value="EUR">欧元 (EUR)</option>
<option value="JPY">日元 (JPY)</option>
</select>
<br><br>
<button type="submit">转换</button>
</form>
<p id="result"></p>
</body>
</html>
gpt写的html页面 我有我有。。。。 多少钱对对对 这个需要接口的吧 这个没有免费的吧 不好搞啊 找到了,这里卖的,但是1500太贵了。
https://www.bazhepu.com/42380.html
页:
[1]
2