COMING SOON 🚀

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,696
13년 전 조회 1,900
13년 전 조회 1,846
13년 전 조회 3,663
13년 전 조회 2,093
13년 전 조회 2,302
13년 전 조회 1,743
13년 전 조회 2,736
13년 전 조회 1,789
13년 전 조회 1,934
13년 전 조회 1,668
13년 전 조회 1,689
13년 전 조회 1,734
13년 전 조회 1,801
13년 전 조회 2,935
13년 전 조회 1,968
13년 전 조회 2,058
13년 전 조회 2,948
13년 전 조회 2,121
13년 전 조회 3,748
13년 전 조회 1,631
13년 전 조회 4,301
13년 전 조회 1,753
13년 전 조회 4,545
13년 전 조회 2,110
13년 전 조회 2,104
13년 전 조회 2,434
13년 전 조회 1,414
13년 전 조회 1,487
13년 전 조회 2,486
13년 전 조회 3,015
13년 전 조회 1,735
13년 전 조회 1,487
13년 전 조회 1,638
13년 전 조회 1,607
13년 전 조회 2,418
13년 전 조회 2,047
13년 전 조회 1,470
13년 전 조회 1,475
13년 전 조회 1,566
13년 전 조회 1,806
13년 전 조회 1,719
13년 전 조회 1,483
13년 전 조회 2,309
13년 전 조회 1,666
13년 전 조회 6,879
13년 전 조회 2,036
13년 전 조회 1,660
13년 전 조회 2,694
13년 전 조회 1,487
13년 전 조회 2,439
13년 전 조회 3,925
13년 전 조회 1,479
13년 전 조회 1,482
13년 전 조회 1,595
13년 전 조회 1,486
13년 전 조회 1,405
13년 전 조회 1,675
13년 전 조회 1,414
13년 전 조회 1,940
13년 전 조회 1,940
13년 전 조회 1,690
13년 전 조회 1,427
13년 전 조회 1,615
13년 전 조회 2,365
13년 전 조회 1,373
13년 전 조회 3,374
13년 전 조회 3,084
13년 전 조회 2,953
13년 전 조회 2,259
13년 전 조회 1,587
13년 전 조회 4,743
13년 전 조회 2,574
13년 전 조회 3,049
13년 전 조회 1,446
13년 전 조회 1,386
13년 전 조회 2,543
13년 전 조회 1,541
13년 전 조회 2,764
13년 전 조회 2,418
13년 전 조회 2,251
13년 전 조회 2,098
13년 전 조회 5,530
13년 전 조회 3,920
13년 전 조회 2,291
13년 전 조회 1,375
13년 전 조회 2,028
13년 전 조회 2,501
13년 전 조회 2,243
13년 전 조회 2,049
13년 전 조회 1,755
13년 전 조회 1,393
13년 전 조회 1,802
13년 전 조회 1,655
13년 전 조회 1,485
13년 전 조회 1,467
13년 전 조회 1,911
13년 전 조회 1,373
13년 전 조회 1,324
13년 전 조회 1,409