off() 方法移除用.on()绑定的事件处理程序。
unbind() 方法移除用.bind()绑定的事件处理程序。
从 jQuery 1.7开始, .on() 和 .off()方法是最好的元素上附加和移除事件处理程序的方法。
常用原型区别:
.unbind( eventType [, handler ] )
.off( events [, selector ] [, handler ] ) off:
http://www.365mini.com/page/jquery-off.htm
unbind:
http://www.365mini.com/page/jquery-unbind.htm
one()
函数用于为每个匹配元素的一个或多个事件绑定一次性事件处理函数
jQueryObject.one( events , selector [, data ], handler )
jQueryObject.one( eventsMap [, selector ] [, data ] ) http://www.365mini.com/page/jquery-one.htm
时间: 2024-11-07 11:47:26