by kevin
15.
六月 2014 17:32
>
最近是累了点,懒了点。 一个div元素,点击,页面外的元素,隐藏此div。 1: $(document).mouseup(function (e)
2: {
3: var container = $("YOUR CONTAINER SELECTOR");
4:
5: if (!container.is(e.target) // if the target of the click isn't the container...
6: && container.has(e.target).length === 0) // ... nor a descendant...
[更多...]
by kevin
27.
四月 2013 10:38
>
几对绑定事件和解绑的方法: live和die bind和unbind delegate和undelegate 他们的差别 英文版: http://www.alfajango.com/blog/the-difference-between-jquerys-bind-live-and-delegate/ 中文版: http://kb.cnblogs.com/page/94469/ 重要的是他们是一一对应的,不要搞混。 就是用bind绑定,就用unbind解除,不要用die和undelegate。