从currencyconverterapi获取内容

时间:2018-07-20 22:03:56

标签: jquery html json

我有货币汇率。 我想通过jQuery从此链接获取货币价值 http://free.currencyconverterapi.com/api/v5/convert?q=EUR_USD&compact=y

2 个答案:

答案 0 :(得分:0)

尝试一下:

$.getJSON("http://free.currencyconverterapi.com/api/v5/convert?q=EUR_USD&compact=y", function(result) {
    $("#rate").text(result.EUR_USD.val);
});

答案 1 :(得分:0)

您可以像下面一样使用$.getJSON来读取打印货币

$.getJSON("http://free.currencyconverterapi.com/api/v5/convert?q=EUR_USD&compact=y", function(response) {
  $("#result").html(response.EUR_USD.val);
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="result">
</div>