我有货币汇率。 我想通过jQuery从此链接获取货币价值 http://free.currencyconverterapi.com/api/v5/convert?q=EUR_USD&compact=y
答案 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>