Created
November 18, 2013 05:38
-
-
Save fordlee404/7523050 to your computer and use it in GitHub Desktop.
创建一次性事件
This file contains 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
document.getElementById("myelement").addEventListener("click", handler); | |
// 处理器函数 | |
function handler(e) { | |
// 移除处理器 | |
e.target.removeEventListener(e.type, arguments.callee); | |
alert("You'll only see this once!"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment