1,使用on注册事件 $(selector).on(event,childSelector,data,function) 2,$(selector)中的selector可以是document,那么意味着将childSelector的事件注册挂载在document上,因为document是一切节点的父节点. 3,如果要解绑使用off()函数 $(selector).off(event,selector,function(eventObj),map) event 必需.规定要从被选元素移除的一个或多…