html 엘리멘탈 이벤트 문의.

<div>
<div></div>
</div>

div안에 있는 div가 제거될시 이벤트가 발생되게 하고 싶은데..

이런 이벤트가 있나요?


|

댓글 3개

오브젝트가 destroy될 때 이벤트 발생관련하는게 원래 자바스크립트에는 없습니다. 다만 setTimeout을 이용해서 만들 수는 있습니다. 다행히 jQuery에 destroyed라는 event를 추가해주는 플러그인을 만든 사람이 있네요. 이걸 이용하면 쉽게 짤 수 있습니다. 예제소스를 만들어보았으니 테스트해보면 쉽게 알수 있어요. 원리도 간단합니다. 단순하게 bind로 destroyed event 추가만 해주면 되요.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title> Test for jQuery event.destroyed </title>
<meta http-equiv='content-type' content='text/html; charset=utf-8' />
<meta name="Generator" content="EditPlus" />
<meta name="Author" content="Jacob Lee" />
<meta name="Keywords" content="" />
<meta name="Description" content="" />
<script src="http://code.jquery.com/jquery-latest.min.js"
type="text/javascript"></script>
<!--<script src="jquery.event.destroyed.js"
type="text/javascript"></script>-->

<script src="http://v3.javascriptmvc.com/jquery/dist/jquery.event.destroyed.js"
type="text/javascript"></script>
</head>

<body>
<!-- Test for jQuery event.destroyed
When a object is destroyed, the event will show -->

<div class="container">
<div class="hello">Hello</div>
<div class="goodbye">Goodbye</div>
</div>

<button onclick="destroy_hello();">Click Me!</button>

<script type="text/javascript">


$(document).ready(function(){
$('.hello').bind('destroyed', function(){alert('goodbye "Hello"!');});
});


function destroy_hello()
{
$('.hello').remove();
}

</script>
</body>
</html>
정말로 고맙습니다.
jQuery에 대해서 어느 정도 안다고 생각하고 있었는데 이런 것도 있군요.
좋은 정보 감사합니다.
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
13년 전 조회 2,752
13년 전 조회 1,950
13년 전 조회 1,885
13년 전 조회 3,720
13년 전 조회 2,146
13년 전 조회 2,351
13년 전 조회 1,795
13년 전 조회 2,783
13년 전 조회 1,847
13년 전 조회 1,986
13년 전 조회 1,723
13년 전 조회 1,741
13년 전 조회 1,789
13년 전 조회 1,849
13년 전 조회 2,992
13년 전 조회 2,015
13년 전 조회 2,106
13년 전 조회 2,991
13년 전 조회 2,162
13년 전 조회 3,788
13년 전 조회 1,676
13년 전 조회 4,352
13년 전 조회 1,791
13년 전 조회 4,591
13년 전 조회 2,161
13년 전 조회 2,142
13년 전 조회 2,463
13년 전 조회 1,465
13년 전 조회 1,534
13년 전 조회 2,530
13년 전 조회 3,065
13년 전 조회 1,789
13년 전 조회 1,532
13년 전 조회 1,693
13년 전 조회 1,658
13년 전 조회 2,467
13년 전 조회 2,082
13년 전 조회 1,529
13년 전 조회 1,513
13년 전 조회 1,618
13년 전 조회 1,847
13년 전 조회 1,770
13년 전 조회 1,529
13년 전 조회 2,354
13년 전 조회 1,714
13년 전 조회 6,928
13년 전 조회 2,083
13년 전 조회 1,723
13년 전 조회 2,752
13년 전 조회 1,545
13년 전 조회 2,490
13년 전 조회 3,971
13년 전 조회 1,522
13년 전 조회 1,535
13년 전 조회 1,661
13년 전 조회 1,539
13년 전 조회 1,453
13년 전 조회 1,716
13년 전 조회 1,454
13년 전 조회 1,994
13년 전 조회 1,988
13년 전 조회 1,733
13년 전 조회 1,485
13년 전 조회 1,663
13년 전 조회 2,413
13년 전 조회 1,428
13년 전 조회 3,416
13년 전 조회 3,131
13년 전 조회 2,988
13년 전 조회 2,298
13년 전 조회 1,620
13년 전 조회 4,791
13년 전 조회 2,615
13년 전 조회 3,089
13년 전 조회 1,482
13년 전 조회 1,431
13년 전 조회 2,588
13년 전 조회 1,580
13년 전 조회 2,806
13년 전 조회 2,467
13년 전 조회 2,278
13년 전 조회 2,128
13년 전 조회 5,567
13년 전 조회 3,963
13년 전 조회 2,332
13년 전 조회 1,423
13년 전 조회 2,066
13년 전 조회 2,541
13년 전 조회 2,284
13년 전 조회 2,092
13년 전 조회 1,796
13년 전 조회 1,437
13년 전 조회 1,846
13년 전 조회 1,702
13년 전 조회 1,528
13년 전 조회 1,513
13년 전 조회 1,965
13년 전 조회 1,419
13년 전 조회 1,373
13년 전 조회 1,446