F&R 941

거래소별 api

거래소별 api 해당 링크는 각 거래소 별 API로 JSON형태를 출력합니다. 1. 국내 거래소코인원(coinone) APIhttps://api.coinone.co.kr/ticker/?currency=all&format=json 빗썸(bithumb) API https://api.bithumb.com/public/ticker/all 코빗(korbit) API https://api.korbit.co.kr/v1/ticker?currency_pair=btc_krw 코인네스트(Coinnest) API https://www.coinnest.co.kr/api/pub/ticker 코인레일(coinrail) APIhttps://api.coinrail.co.kr/public/last/order?currency=qtum-b..

알면 좋을껄? 2019.01.08

자바스크립트 페이지 이동

자바스크립트 페이지 이동 1. submit : 일반 사용예제 1 2 3 4 5 6 7 8 function form_submit() { document.id.action="link_page.html"; document.id.submit(); } cs 2. href : 값을 정해야하는 프로퍼티 사용예제 1 2 3 4 5 6 7 function page_href() { location.href = "test.html"; } cs 3. replace : 파라미터로 동작하는 메소드 사용예제 1 2 3 4 5 6 7 function page_replace() { location.replace("test.html"); } cs