Created
April 24, 2013 03:08
-
-
Save chikoski/5449296 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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