Skip to content

Instantly share code, notes, and snippets.

@xyqfer
Created October 6, 2013 07:42
Show Gist options
  • Save xyqfer/6850848 to your computer and use it in GitHub Desktop.
Save xyqfer/6850848 to your computer and use it in GitHub Desktop.
特殊事件委托
/* http://www.quirksmode.org/blog/archives/2008/04/delegating_the.html */
<ol id="dropdown">
<li><a href="#">List item 1</a>
<ol>
<li><a href="#">List item 1.1</a></li>
<li><a href="#">List item 1.2</a></li>
<li><a href="#">List item 1.3</a></li>
</ol>
</li>
[etc.]
</ol>
$('dropdown').onmouseover = handleMouseOver;
$('dropdown').onmouseout = handleMouseOut;
$('dropdown').onfocusin = handleMouseOver;
$('dropdown').onfocusout = handleMouseOut;
$('dropdown').addEventListener('focus',handleMouseOver,true);
$('dropdown').addEventListener('blur',handleMouseOut,true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment