rokkonet

PC・Androidソフトウェア・アプリの開発・使い方に関するメモ

2017-01-04から1日間の記事一覧

Wikipedia APIで「今日は何の日」データを取得するJavaScript

2017 Jan. 05.2017 Jan. 04.送信するURL var now = new Date(); var month = now.getMonth()+1; var day = now.getDate(); var monthDay = month+"月"+day+"日 "; var url = 'https://ja.wikipedia.org/w/api.php?format=json&utf8&action=query&prop=revisi…