-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathmonoevent.js
1147 lines (940 loc) · 34.6 KB
/
monoevent.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* MonoEvent Beta
* Event library for mobile
* Copyright (c) Yiguo Chan
* Released under the MIT Licenses
*
* Mail : [email protected]
* Date : 2015-04-21
*/
(function( define, window ){
define(function(){
'use strict';
var eventProps = 'attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which touches changedTouches fireData'.split( ' ' ),
isIOS = !!~navigator.userAgent.toLowerCase().indexOf('iphone os'),
doubleTapSetupCount = 0,
eventHooks = {};
var Event = function( event ){
// 无new实例化
if( !(this instanceof Event) ){
return new Event( event );
}
if( event && event.type ){
this.originalEvent = event;
this.type = event.type;
this.isDefaultPrevented = ( event.defaultPrevented ||
event.getPreventDefault && event.getPreventDefault() ) ? true : false;
}
else{
this.type = event;
}
this.timeStamp = event && event.timeStamp || Date.now();
};
Event.prototype = {
// 模拟DOM LV2的阻止默认事件的方法
preventDefault : function(){
// DOM LV3
this.isDefaultPrevented = true;
var e = this.originalEvent;
if( e ){
e.preventDefault();
}
},
// 模拟DOM LV2阻止事件冒泡的方法
stopPropagation : function(){
// DOM LV3
this.isPropagationStopped = true;
var e = this.originalEvent;
if( e ){
e.stopPropagation();
}
},
// 模拟DOM LV3阻止同类型事件冒泡的方法
stopImmediatePropagation : function(){
this.isImmediatePropagationStopped = true;
this.stopPropagation();
},
// 判定是否阻止了默认事件
isDefaultPrevented : false,
// 判定是否阻止了冒泡
isPropagationStopped : false,
// 判定是否阻止了同类型事件的冒泡
isImmediatePropagationStopped : false
};
eventHooks.tap = {
types : [ 'touchstart', 'touchend' ],
setup : function( options ){
var originalHandle = options.handle,
startTx, startTy,
handles = {
touchstart : function( e ){
var touches = e.touches[0];
startTx = touches.clientX;
startTy = touches.clientY;
},
touchend : function( e ){
var touches = e.changedTouches[0],
endTx = touches.clientX,
endTy = touches.clientY;
e.type = options.type;
if( Math.abs(startTx - endTx) < 6 && Math.abs(startTy - endTy) < 6 ){
originalHandle.call( this, e );
}
}
};
ne.addSpecialEvent( options, handles, this.types, originalHandle );
},
teardown : function( options ){
this.types.forEach(function( item ){
var newOptions = ne.mergeOptions( options, item, true );
ne.removeEvent( newOptions );
});
}
};
eventHooks.doubleTap = {
types : [ 'touchstart', 'touchend', 'click' ],
setup : function( options ){
var originalHandle = options.handle,
firstTouchEnd = true,
lastTime = 0,
lastTx = null,
lastTy = null,
startTx, startTy, dTapTimer, startTime,
handles = {
touchstart : function( e ){
if( dTapTimer ){
clearTimeout( dTapTimer );
dTapTimer = null;
}
var touches = e.touches[0];
startTx = touches.clientX;
startTy = touches.clientY;
},
touchend : function( e ){
var touches = e.changedTouches[0],
endTx = touches.clientX,
endTy = touches.clientY,
now = Date.now(),
duration = now - lastTime;
e.type = options.type;
if( Math.abs(startTx - endTx) < 6 && Math.abs(startTy - endTy) < 6 ){
if( duration < 501 ){
if( lastTx !== null &&
Math.abs(lastTx - endTx) < 45 &&
Math.abs(lastTy - endTy) < 45 &&
(!options.selector || e.isFake || ne.existDoubleTap(this, e.target, options.selector)) ){
firstTouchEnd = true;
lastTx = lastTy = null;
delete e.isFake;
originalHandle.call( e.target, e );
}
}
else{
lastTx = endTx;
lastTy = endTy;
}
}
else{
firstTouchEnd = true;
lastTx = lastTy = null;
}
lastTime = now;
}
},
bodyHandles = {
touchstart : function(){
startTime = Date.now();
},
touchend : function( e ){
var noLongTap = Date.now() - startTime < 501,
handles;
if( firstTouchEnd ){
firstTouchEnd = false;
if( noLongTap ){
handles = ne.existDoubleTap( this, e.target, options.selector );
if( Array.isArray(handles) ){
dTapTimer = setTimeout(function(){
handles.forEach(function( item ){
e.isFake = true;
item.handle( e );
});
firstTouchEnd = true;
lastTx = lastTy = null;
}, 400 );
}
}
}
else{
firstTouchEnd = true;
}
}
};
if( isIOS ){
handles.click = function(){
if( dTapTimer ){
clearTimeout( dTapTimer );
dTapTimer = null;
firstTouchEnd = true;
}
};
if( !doubleTapSetupCount ){
[ 'touchstart', 'touchend' ].forEach(function( item ){
ne.addEvent({
elems : [ document.body ],
type : item,
dataName : item,
namespace : 'likedoubleTap',
capture : true,
handle : bodyHandles[ item ]
});
});
}
}
ne.addSpecialEvent( options, handles, this.types, originalHandle );
},
teardown : function( options ){
this.types.forEach(function( item ){
var newOptions = ne.mergeOptions( options, item, true );
ne.removeEvent( newOptions );
});
if( isIOS && !doubleTapSetupCount ){
[ 'touchstart', 'touchend' ].forEach(function( item ){
ne.removeEvent({
elems : [ document.body ],
type : item,
dataName : item,
namespace : 'likedoubleTap',
capture : true
});
});
}
}
};
eventHooks.longTap = {
types : [ 'touchstart', 'touchmove', 'touchend' ],
setup : function( options ){
var originalHandle = options.handle,
startTx, startTy, lTapTimer,
clearTimer = function(){
clearTimeout( lTapTimer );
lTapTimer = null;
},
handles = {
touchstart : function( e ){
if( lTapTimer ){
clearTimer();
}
var touches = e.touches[0],
self = this;
startTx = touches.clientX;
startTy = touches.clientY;
e.type = options.type;
lTapTimer = setTimeout(function(){
originalHandle.call( self, e );
}, 750 );
e.preventDefault();
},
touchmove : function( e ){
var touches = e.touches[0],
moveTx = touches.clientX,
moveTy = touches.clientY;
if( lTapTimer && (Math.abs(moveTx - startTx) > 5 || Math.abs(moveTy - startTy) > 5) ){
clearTimer();
}
},
touchend : function(){
if( lTapTimer ){
clearTimer();
}
}
};
ne.addSpecialEvent( options, handles, this.types, originalHandle );
}
};
eventHooks.swipe = {
types : [ 'touchstart', 'touchmove', 'touchend' ],
setup : function( options ){
var originalHandle = options.handle,
startTx, startTy, isTouchMove,
handles = {
touchstart : function( e ){
var touches = e.touches[0];
startTx = touches.clientX;
startTy = touches.clientY;
isTouchMove = false;
},
touchmove : function( e ){
isTouchMove = true;
},
touchend : function( e ){
if( !isTouchMove ){
return;
}
var touches = e.changedTouches[0],
endTx = touches.clientX,
endTy = touches.clientY,
distanceX = startTx - endTx,
distanceY = startTy - endTy,
isSwipe = false;
e.type = options.type;
if( Math.abs(distanceX) >= Math.abs(distanceY) ){
if( distanceX > 20 ){
isSwipe = true;
if( options.type === 'swipeLeft' ){
originalHandle.call( this, e );
}
}
else if( distanceX < -20 ){
isSwipe = true;
if( options.type === 'swipeRight' ){
originalHandle.call( this, e );
}
}
}
else{
if( distanceY > 20 ){
isSwipe = true;
if( options.type === 'swipeUp' ){
originalHandle.call( this, e );
}
}
else if( distanceY < -20 ){
isSwipe = true;
if( options.type === 'swipeDown' ){
originalHandle.call( this, e );
}
}
}
if( isSwipe && options.type === 'swipe' ){
originalHandle.call( this, e );
}
}
};
ne.addSpecialEvent( options, handles, this.types, originalHandle );
}
};
eventHooks.longTap.teardown = eventHooks.swipe.teardown = eventHooks.tap.teardown;
eventHooks.swipeLeft = eventHooks.swipeRight = eventHooks.swipeUp = eventHooks.swipeDown = eventHooks.swipe;
var ne = {
cache : {},
uuid : 2,
guid : Date.now() + ( Math.random() + '' ).slice( -8 ),
isWindow : function( obj ){
return obj && obj === obj.window;
},
// 判断是否为空对象
isEmptyObject : function( obj ){
var name;
for( name in obj ){
return false;
}
return true;
},
/*
* 判断一个DOM元素是否绑定了doubleTap事件
* @param { HTMLElement } 代理元素
* @param { HTMLElement } 触发事件的目标元素
* @param { String } 事件代理的选择器
* @return { Array/Boolean } 绑定了doubleTap事件则返回事件handles数组,否则返回false
*/
existDoubleTap : function( elem, target, selector ){
var filter = ne.delegateFilter,
dataName = 'special_' + ( selector ? selector + '_' : '' ) + 'doubleTap_touchend',
flag = false,
data;
while( target ){
if( selector ){
data = ne.data( elem, dataName );
if( filter(target, selector) ){
flag = true;
}
}
else{
data = ne.data( target, dataName );
if( Array.isArray(data) ){
flag = true;
}
}
if( flag ){
return data;
}
else{
target = target.parentNode;
}
}
return false;
},
/*
* 根据原来的事件配置对象创建一个新的对象
* @param { Object } 原事件配置对象
* @param { String } 新的事件类型
* @param { Boolean } 是否卸载
* @return { Object } 返回新创建的对象
*/
mergeOptions : function( source, type, isTeardown ){
var target = {
type : type,
elems : source.elems,
selector : source.selector,
extraData : source.extraData,
originalType : source.type,
namespace : source.namespace,
dataName : ( source.selector ? source.selector + '_' : '' ) + type
};
if( isTeardown ){
target.handle = source.handle;
}
return target;
},
/*
* 获取和设置元素的缓存索引值,小于3的索引值都是为特殊元素准备的
* window 的索引为 0,document 的索引为 1,
* document.documentElement 的索引为2
* @param { HTMLElement }
* @param { Boolean } 为ture的时如果元素没有索引值将创建一个
* @return { Number } 返回元素的索引值
*/
getCacheIndex : function( elem, isSet ){
if( elem.nodeType === 1 ){
var guid = ne.guid;
return !isSet || guid in elem ?
elem[ guid ] :
( elem[ guid ] = ++ne.uuid );
}
return ne.isWindow( elem ) ? 0 :
elem.nodeType === 9 ? 1 :
elem.tagName === 'HTML' ? 2 : -1;
},
/*
* 写入/获取缓存
* @param { HTMLElement }
* @param { String } 缓存的key
* @param { Anything } 缓存的值
* @return { Anything } 缓存的值
*/
data : function( elem, name, val ){
var isUndefined = val === undefined,
index = ne.getCacheIndex( elem, !isUndefined ),
_cache, result;
if( index !== undefined ){
if( !(index in ne.cache) && !isUndefined ){
ne.cache[ index ] = {};
}
_cache = ne.cache[ index ];
if( !_cache ){
return;
}
result = _cache[ name ];
if( isUndefined || result !== undefined ){
return result;
}
if( !isUndefined ){
_cache[ name ] = val;
return val;
}
}
},
/*
* 移除缓存
* @param { HTMLElement }
* @param { String } 缓存的一级命名空间
* @param { String } 缓存的key
*/
removeData : function( elem, name ){
var index = ne.getCacheIndex( elem ),
_cache;
if( index in ne.cache ){
// 有参数就删除指定的数据
_cache = ne.cache[ index ];
if( name ){
delete _cache[ name ];
}
if( ne.isEmptyObject(_cache) ){
delete ne.cache[ index ];
}
// 索引值小于3都无需删除DOM元素上的索引值
if( index < 3 ){
return;
}
// 缓存中无数据了则删除DOM元素上的索引值
if( _cache === undefined ){
try{
delete elem[ ne.guid ];
}
catch( _ ){
elem.removeAttribute( ne.guid );
}
}
}
},
/*
* 添加特殊事件的handle缓存
* @param { HTMLElement }
* @param { Function } 原事件处理器
* @param { Object } 配置对象
* @param { Object } 用于模拟各种类型的事件处理器
*/
addSpecialData : function( elem, originalHandle, options, handles ){
var specialName, specialData, name, item;
if( options.type === 'doubleTap' ){
doubleTapSetupCount++;
}
for( name in handles ){
specialName = 'special_' + ( options.selector ? options.selector + '_' : '' ) + options.type + '_' + name;
specialData = ne.data( elem, specialName, [] );
specialData.push({
originalHandle : originalHandle,
handle : handles[ name ]
});
}
},
/*
* 将Nodelist转换成真实数组
* @param { Nodelist }
* @return { Array } 真实的数组
*/
makeArray : function( source, target ){
target = target || [];
var i = 0,
len = source.length;
if( source !== null && source !== undefined ){
if( Array.isArray(source) && Array.isArray(target) && !target.length ){
return source;
}
for( ; i < len; i++ ){
target[ target.length++ ] = source[i];
}
}
return target;
},
/*
* 绑定事件的内部方法
* @param { Object } 参数集合
* elems : DOM 数组
* selector : 事件代理的选择器
* type : 事件类型
* dataName : 缓存事件处理器的key
* handle : 事件处理器
* capture : 是否捕获
* extraData : 附加数据
* namespace : 命名空间
*/
addEvent : function( options ){
var capture = options.capture === undefined ? false : options.capture,
selector = options.selector,
dataName = options.dataName,
elems = options.elems,
len = elems.length,
i = 0,
handles, eventHandle, elem,
eventData = {
type : options.originalType || options.type,
handle : options.handle
};
if( options.namespace ){
eventData.namespace = options.namespace;
}
if( options.extraData ){
eventData.extraData = options.extraData;
}
for( ; i < len; i++ ){
elem = elems[i];
handles = this.data( elem, dataName, [] );
// 将事件处理器添加到缓存的数组中,待统一执行
handles.push( eventData );
// 确保该元素只绑定一次同类型的事件
if( handles.length === 1 ){
// 生成一个统一的事件处理方法
eventHandle = ne.eventHandle( elem, selector );
// 然后将该方法也缓存到数组的第一个索引中,方便之后的事件卸载
handles.unshift({ handle : eventHandle });
elem.addEventListener( options.type, eventHandle, capture );
}
}
},
/*
* 卸载事件的内部方法
* @param { Object } 参数集合 参数解说同addEvent
*/
removeEvent : function( options ){
var capture = options.capture === undefined ? false : options.capture,
namespace = options.namespace,
dataName = options.dataName,
handle = options.handle,
elems = options.elems,
type = options.originalType || options.type,
len = elems.length,
nameArr = dataName.split( '_' ),
i = 0,
// specialName的命名规则是 'special_' + 原生的事件类型
// dataName有可能带有选择器的的前缀
specialName = 'special_' +
( options.selector ? options.selector + '_' : '' ) +
options.originalType + '_' +
nameArr[ nameArr.length - 1 ],
handles, result, specialHandles, specialHandle, elem, j;
for( ; i < len; i++ ){
elem = elems[i];
handles = this.data( elem, dataName );
if( handles ){
specialHandles = this.data( elem, specialName );
// 卸载指定的事件处理器
for( j = 1; j < handles.length; j++ ){
result = handles[j];
if( specialHandles ){
specialHandle = specialHandles[ j - 1 ];
if( specialHandle && specialHandle.originalHandle === handle ){
handle = specialHandle.handle;
}
}
if( result.type === type &&
(!namespace || result.namespace === namespace) &&
(!handle || result.handle === handle) ){
handles.splice( j, 1 );
if( specialHandles ){
specialHandles.splice( j - 1, 1 );
}
if( options.originalType === 'doubleTap' && dataName === 'touchend' ){
doubleTapSetupCount--;
}
if( handle ){
break;
}
j--;
}
}
// 没有指定函数名或只剩下一个【统一的事件处理器】将卸载所有的事件处理器
if( handles.length === 1 ){
// 卸载统一的事件处理器
elem.removeEventListener( options.type, handles[0].handle, capture );
// 删除缓存中的该事件类型的所有数据
this.removeData( elem, dataName );
if( specialHandles ){
this.removeData( elem, specialName );
}
}
}
}
},
addSpecialEvent : function( options, handles, types, originalHandle ){
var len = options.elems.length,
i = 0;
for( ; i < len; i++ ){
ne.addSpecialData( options.elems[i], originalHandle, options, handles )
}
types.forEach(function( item ){
var newOptions = ne.mergeOptions( options, item );
if( handles[item] ){
newOptions.handle = handles[ item ];
ne.addEvent( newOptions );
}
});
},
/*
* 模拟事件触发器
* @param { HTMLElement }
* @param { String } 事件类型
* @param { Array } 事件处理器的数组
* @param { String } 命名空间
* @param { Array } 附加参数
*/
fireEvent : function( elem, type, namespace, fireData ){
var i = 1,
handles = this.data( elem, type ),
len, event, parent, result, isPropagationStopped;
if( handles ){
// 修正Event对象
event = {
target : elem,
currentTarget : elem,
type : type,
stopPropagation : function(){
isPropagationStopped = true;
}
};
if( fireData ){
event.fireData = fireData;
}
if( !namespace ){
handles[0].handle.call( elem, event );
}
else{
len = handles.length;
for( ; i < len; i++ ){
result = handles[i];
if( result.namespace === namespace ){
result.handle.call( elem, event );
}
}
}
parent = elem.parentNode;
// 模拟事件冒泡
if( parent && !isPropagationStopped ){
this.fireEvent( parent, type, null, namespace, fireData );
}
}
},
/*
* 事件代理的DOM元素过滤器,判断是否符合 selector 的匹配
* @param { HTMLElement }
* @param { String } 基本类型的选择器( tag, class, id )
* @return { Boolean } 是否匹配
*/
delegateFilter : function( elem, selector ){
var tagName, className, name, index;
// class
if( ~selector.indexOf('.') ){
className = elem.className;
index = selector.indexOf( '.' );
name = ' ' + selector.substring( index + 1 ) + ' ';
tagName = selector.substring( 0, index ).toUpperCase();
return (!tagName || elem.tagName === tagName) && (className && !!~(' ' + className + ' ').indexOf(name));
}
// id
if( ~selector.indexOf('#') ){
index = selector.indexOf( '#' );
name = selector.substring( index + 1 );
tagName = selector.substring( 0, index ).toUpperCase();
return (!tagName || elem.tagName === tagName) && (elem.id === name);
}
// tag
return elem.tagName.toLowerCase() === selector;
},
// 模拟一个可写的、统一的Event接口对象,该对象包含了常见的标准属性和方法。
createEvent : function( event ){
var sourceEvent = event,
target = event.target,
len = eventProps.length,
i = 0,
type;
// 创建Event对象
event = Event( sourceEvent );
// 将原生的Event的某些常见的标准属性合并到新Event中
for( ; i < len; i++ ){
event[ eventProps[i] ] = sourceEvent[ eventProps[i] ];
}
type = event.type;
return event;
},
/*
* 生成一个统一的事件处理器,来依次执行该元素绑定的所有事件处理器
* @param { HTMLElement }
* @param { String/Function } 事件代理的选择器或事件处理器(若为事件处理器将不予理会)
* @return { Function }
*/
eventHandle : function( elem, selector ){
return function( event ){
event = ne.createEvent( event );
var orginalTarget = event.target,
fireData = event.fireData,
isDelegate = false,
type = event.type,
target = elem,
dataName = type,
i = 1,
handles, len, j, filter, result, name;
if( !event.currentTarget ){
event.currentTarget = ne.data( orginalTarget, 'currentTarget' ) || elem;
}
// 如果有 selector 则用 target 与 selector 进行匹配,匹配成功才执行事件处理器
// 这就是事件代理的简单原理,利用事件冒泡的特性
if( selector ){
filter = ne.delegateFilter;
// 事件代理时将 this 指向 event.target,否则默认指向 elem
target = orginalTarget;
// 选择器 + 事件类型的方式来区分事件代理
dataName = selector + '_' + type;
for( ; target !== elem; target = target.parentNode || elem ){
if( filter(target, selector) ){
isDelegate = true;
break;
}
}
}
if( !selector || isDelegate ){
handles = ne.data( elem, dataName );
if( handles ){
len = handles.length;
for( ; i < len; i++ ){
// 针对只执行一次即卸载的事件的特殊处理
j = handles[i] ? i : i - 1;
result = handles[j];
// 将缓存的附加数据添加到event对象中
if( result.extraData || fireData ){
if( result.extraData ){
event.extraData = {};
for( name in result.extraData ){
event.extraData[ name ] = result.extraData[ name ];
}
}
if( fireData ){
event.extraData = {};
for( name in fireData ){
event.extraData[ name ] = fireData[ name ];
}
}
try{
event.originalEvent.fireData = null;
delete event.originalEvent.fireData;
}
catch( _ ){};
delete event.fireData;
}
// 附加数据不能共享以确保不冲突
else{
delete event.extraData;
}
if( result.handle.call(target, event) === false ){
event.preventDefault();
event.stopPropagation();
}
}
}
}
};
}
};
var init = function( selector, context ){
var elems;
this.length = 0;
if( !selector ){
return this;
}
// selector为字符串
if( typeof selector === 'string' ){
selector = selector.trim();
context = context || document;
elems = context.querySelectorAll( selector, context );
return ne.makeArray( elems, this );
}
// selector为DOM节点、document、document.documentElement
if( selector.nodeType || ne.isWindow(selector) ){
this[0] = selector;
this.length = 1;
return this;
}
// selector为Nodelist