Skip to content

Instantly share code, notes, and snippets.

@piyonishi
Last active December 29, 2015 07:19
Show Gist options
  • Save piyonishi/7635038 to your computer and use it in GitHub Desktop.
Save piyonishi/7635038 to your computer and use it in GitHub Desktop.
イベントの委譲
var list = document.getElementById("list");
list.addEventListener("click", function(e) {
if (e.target.tagName == "LI") {
e.target.style.color = "#f00";
return false;
}
}, false);
list.innerHTML = "<li>test</li>";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment