左右不逢缘 发表于 2024-10-5 16:18:03

求购一个汇率的网站程序

RT

类似:http://soltarot.com/

浅生 发表于 2024-10-5 16:18:43

同求。。

拾光 发表于 2024-10-5 16:19:02

这个。。没有免费的?

浅生 发表于 2024-10-5 16:19:45

<!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页面

TyCoding 发表于 2024-10-5 16:20:00

我有我有。。。。

独家记忆 发表于 2024-10-5 16:20:10

多少钱对对对

婷姐 发表于 2024-10-5 16:20:58

这个需要接口的吧

Crystαl 发表于 2024-10-5 16:21:45

这个没有免费的吧

TyCoding 发表于 2024-10-5 16:22:43

不好搞啊

TyCoding 发表于 2024-10-5 16:22:54

找到了,这里卖的,但是1500太贵了。

https://www.bazhepu.com/42380.html
页: [1] 2
查看完整版本: 求购一个汇率的网站程序

创宇盾启航版免费网站防御网站加速服务