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,821
13년 전 조회 2,017
13년 전 조회 1,966
13년 전 조회 3,796
13년 전 조회 2,209
13년 전 조회 2,404
13년 전 조회 1,862
13년 전 조회 2,842
13년 전 조회 1,911
13년 전 조회 2,048
13년 전 조회 1,771
13년 전 조회 1,810
13년 전 조회 1,845
13년 전 조회 1,901
13년 전 조회 3,057
13년 전 조회 2,082
13년 전 조회 2,181
13년 전 조회 3,063
13년 전 조회 2,241
13년 전 조회 3,848
13년 전 조회 1,738
13년 전 조회 4,403
13년 전 조회 1,848
13년 전 조회 4,652
13년 전 조회 2,221
13년 전 조회 2,214
13년 전 조회 2,533
13년 전 조회 1,517
13년 전 조회 1,593
13년 전 조회 2,586
13년 전 조회 3,121
13년 전 조회 1,843
13년 전 조회 1,604
13년 전 조회 1,761
13년 전 조회 1,726
13년 전 조회 2,521
13년 전 조회 2,131
13년 전 조회 1,567
13년 전 조회 1,573
13년 전 조회 1,684
13년 전 조회 1,915
13년 전 조회 1,828
13년 전 조회 1,597
13년 전 조회 2,410
13년 전 조회 1,789
13년 전 조회 6,981
13년 전 조회 2,150
13년 전 조회 1,766
13년 전 조회 2,809
13년 전 조회 1,603
13년 전 조회 2,547
13년 전 조회 4,026
13년 전 조회 1,593
13년 전 조회 1,590
13년 전 조회 1,719
13년 전 조회 1,606
13년 전 조회 1,501
13년 전 조회 1,763
13년 전 조회 1,516
13년 전 조회 2,033
13년 전 조회 2,054
13년 전 조회 1,770
13년 전 조회 1,527
13년 전 조회 1,724
13년 전 조회 2,453
13년 전 조회 1,481
13년 전 조회 3,461
13년 전 조회 3,197
13년 전 조회 3,053
13년 전 조회 2,377
13년 전 조회 1,668
13년 전 조회 4,843
13년 전 조회 2,665
13년 전 조회 3,140
13년 전 조회 1,537
13년 전 조회 1,494
13년 전 조회 2,641
13년 전 조회 1,641
13년 전 조회 2,855
13년 전 조회 2,521
13년 전 조회 2,328
13년 전 조회 2,175
13년 전 조회 5,621
13년 전 조회 4,018
13년 전 조회 2,401
13년 전 조회 1,479
13년 전 조회 2,129
13년 전 조회 2,603
13년 전 조회 2,336
13년 전 조회 2,151
13년 전 조회 1,856
13년 전 조회 1,493
13년 전 조회 1,899
13년 전 조회 1,759
13년 전 조회 1,597
13년 전 조회 1,572
13년 전 조회 2,020
13년 전 조회 1,483
13년 전 조회 1,432
13년 전 조회 1,490