Skip to content

Instantly share code, notes, and snippets.

@rinsuki
Created December 29, 2015 09:52
Show Gist options
  • Save rinsuki/b2d61362b05a8a78b47f to your computer and use it in GitHub Desktop.
Save rinsuki/b2d61362b05a8a78b47f to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script src="./script.js"></script>
</head>
<body>
<button id="btn">Click</button>
</body>
</html>
window.addEventListener("load",function(){
var btn = document.getElementById("btn");
btn.addEventListener("click",function(){
alert("押された");
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment