jQuery Clone Bug 솔 루 션 코드

3789 단어 jQueryCloneBug
우선 jQuery 이벤트 가 바 인 딩 되 었 을 때 모든 이벤트 가$.data()방법 으로$.cache 에 저장 되 었 습 니 다.data('events')로 반복 적 으로 얻 을 수 있 습 니 다
 
var $div = $('div.demo'), data = $div.data();
// :
var events = data.events;
// window :
var windowEvents = $(window).data('__events__');
필요 할 때 바 인 딩 관련 처리 함수 가 있 는 지 검색 할 수 있 습 니 다
 
var clickHandler = function(){
console.log('click test');
};
$div.click(clickHandler);
events.click.some(function(ev){
return ev.handler === clickHandler;
});
BUG 예제
 
<script type="text/javascript">
Array.prototype.xyzz = function (arg) {
console.log(1,this,arg);
};
Array.prototype.xyzzz = function (arg) {
console.log(2,this,arg);
};
$(function() {
$('button').click(function () {
$('div.demo').clone(true).appendTo( 'body' );
})
$('div.demo').click(function () {
console.log('click..');
})
});
</script>
BUG 소스
 
// event.js, jQuery.event.add:
// jQuery 1.4.1
handlers = events[ type ] = {};
// jQuery 1.4.2+
handlers = events[ type ] = [];
// manipulation.js, jQuery.clone : , cloneCopyEvent():
for ( var type in events ) {
for ( var handler in events[ type ] ) {
jQuery.event.add( this, type, events[ type ][ handler ], events[ type ][ handler ].data );
}
}
1.4.2 이후 events[type]은 배열 입 니 다.for...in 순환 은 배열 의 원형 에 확 장 된 모든 방법 을 가 져 오고 DOM 대상 에 연결 합 니 다.확장 되 지 않 은 배열 의 원형 을 해결 하고 clone(true)방법 을 사용 하지 않 습 니 다.hasOwn Property 검사.each 순환 사용:
 
var self = this;
for ( var type in events ) {
jQuery.each(events[ type ],function(idx,evt) {
jQuery.event.add( self, type, evt.handler, evt.data );
});
}
전체 프 리 젠 테 이 션 코드:

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8" />
<title>jQuery Clone Bug</title>
<style type="text/css">
.demo{ margin:1em;background:#07a; height:10em; width:10em; }
</style>
</head>
<body>
<button>doClone</button>
<a href="https://www.jb51.net"> </a>
<div class="demo">click me</div>
<script src="http://demo.jb51.net/jslib/jquery/jquery-1.4.4.js"></script>
<script type="text/javascript">
Array.prototype.xyzz = function (arg) {
console.log(1,this,arg);
};
Array.prototype.xyzzz = function (arg) {
console.log(2,this,arg);
};
$(function() {
$('button').click(function () {
$('div.demo').clone(true).appendTo( 'body' );
})
$('div.demo').click(function () {
console.log('click..');
})
});
// var events = $('div.demo:eq(0)').data().events
// manipulation.js : cloneCopyEvent
// :line 372
// for ( var type in events ) {
// for ( var handler in events[ type ] ) {
// console.log(handler);
// }
// }
// console.log($.isArray(events['click']))
//
// event.js : event.add
// :line 106
// handlers = events[ type ] = [];
</script>
</body>
</html>
온라인 프 리 젠 테 이 션/js/jquery_clone_bug/jQuery_clone_bug_demo.htm

좋은 웹페이지 즐겨찾기