たぼさんの部屋

いちょぼとのんびり

2013-09-08から1日間の記事一覧

XMLHttpRequestの基本(GET)でtxtを読む

"use strict" ( function() { function init() { alert("start"); xhrConnect(); }; function xhrConnect() { var xhr = new XMLHttpRequest(); xhr.onreadystatechange = function() { if (xhr.readyState == 4) {// DONE if (xhr.status == 200) {// OK al…

HTML5基本構文

<html lang="ja"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no"> <title>html5</title> </head> <body> </body> </html>