开发者

Ajax Currency Rates [closed]

开发者 https://www.devze.com 2023-02-19 23:34 出处:网络
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical andcannot be reasonably answered in its current form. For help clari
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 11 years ago.

I am after a script to show live currency rates from Israel ILS to USD, GBP and EUR on a page, this is only going to be text so there is no need for an amount or form as it is only the value of 1 ILS.

Thanks Ro开发者_Python百科bbie


your question isn't very clear so here goes my answer:

jquery $.ajax() is going to be the 'script' you want. http://api.jquery.com/jQuery.ajax/

 $.ajax({
  url: "http://url_to_data_feed",

  success: function(data){
    $('#someDiv').text(data); //Do work here to show the data
  }
});

If you're asking for specific services that offer the data feed then you need to google a bit because most charge you. http://www.oanda.com/currency-data/exchange-rate-feed/

0

精彩评论

暂无评论...
验证码 换一张
取 消