Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion event.js
Original file line number Diff line number Diff line change
Expand Up @@ -867,7 +867,7 @@ if ( !jQuery.support.focusinBubbles ) {
jQuery.fn.extend({
// 事件绑定,支持多种缺省参数,如下6种
// on( types, selector, data, fn ,one) 如:$('#test').on('click','div.a',{name:'jack'},function(){},1);
// on( types-Object, selector, data ) 如:$('#test').on({'click':function(){},'mouseenter':function(){},'span.a',{name:'jack'})
// on( types-Object, selector, data ) 如:$('#test').on({'click':function(){},'mouseenter':function(){}},'span.a',{name:'jack'})
// on( types-Object, data) 如:$('#test').on({'click':function(){},'mouseenter':function(){},{name:'jack'})
// on( types, fn ) 如:$('#test').on('click',function(){})和$('#test').on('click',false);
// on( types, selector, fn ) 如:$('#test').on('click','span',function(){});
Expand Down