Skip to content

Instantly share code, notes, and snippets.

@chikoski
Created April 24, 2013 03:08
Show Gist options
  • Save chikoski/5449296 to your computer and use it in GitHub Desktop.
Save chikoski/5449296 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>アラートを表示するプログラム</title>
</head>
<body>
<form>
<input type="text" id="input_name">
<input type="button" value="OK" id="input_ok">
</form>
</body>
</html>
var okClicked = function(e){
var input = document.getElementById("input_name");
var name = input.value;
alert("あなたの名前は" + name + "です");
};
var btn = document.getElementById("input_ok");
btn.onclick = okClicked;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment