환율 참고페이지 http://pureani.tistory.com/4919
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <title></title>
- <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
- <script>
- $(document).ready(function(){
- $.ajax({
- url:"http://api.manana.kr/exchange/rate/KRW/JPY,KRW,USD.json",
- dataType: "json",
- success:function(data){
- alert(data[2].name);
- alert(data[2].rate);
- alert(data[2].date);
- }
- ,error: function () { alert("에러발생"); }
- });
- });
- </script>
- </head>
- <body>
- </body>
- </html>