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,418
13년 전 조회 1,624
13년 전 조회 1,575
13년 전 조회 3,405
13년 전 조회 1,806
13년 전 조회 2,015
13년 전 조회 1,466
13년 전 조회 2,458
13년 전 조회 1,511
13년 전 조회 1,660
13년 전 조회 1,395
13년 전 조회 1,419
13년 전 조회 1,428
13년 전 조회 1,529
13년 전 조회 2,736
13년 전 조회 1,717
13년 전 조회 1,828
13년 전 조회 2,720
13년 전 조회 1,881
13년 전 조회 3,528
13년 전 조회 1,396
13년 전 조회 4,084
13년 전 조회 1,529
13년 전 조회 4,335
13년 전 조회 1,897
13년 전 조회 1,879
13년 전 조회 2,221
13년 전 조회 1,196
13년 전 조회 1,265
13년 전 조회 2,255
13년 전 조회 2,818
13년 전 조회 1,526
13년 전 조회 1,260
13년 전 조회 1,406
13년 전 조회 1,391
13년 전 조회 2,210
13년 전 조회 1,833
13년 전 조회 1,234
13년 전 조회 1,259
13년 전 조회 1,331
13년 전 조회 1,574
13년 전 조회 1,484
13년 전 조회 1,286
13년 전 조회 2,113
13년 전 조회 1,467
13년 전 조회 6,654
13년 전 조회 1,821
13년 전 조회 1,436
13년 전 조회 2,471
13년 전 조회 1,278
13년 전 조회 2,229
13년 전 조회 3,733
13년 전 조회 1,269
13년 전 조회 1,291
13년 전 조회 1,409
13년 전 조회 1,278
13년 전 조회 1,201
13년 전 조회 1,473
13년 전 조회 1,204
13년 전 조회 1,752
13년 전 조회 1,718
13년 전 조회 1,478
13년 전 조회 1,240
13년 전 조회 1,428
13년 전 조회 2,183
13년 전 조회 1,184
13년 전 조회 3,190
13년 전 조회 2,892
13년 전 조회 2,779
13년 전 조회 2,095
13년 전 조회 1,403
13년 전 조회 4,542
13년 전 조회 2,378
13년 전 조회 2,840
13년 전 조회 1,217
13년 전 조회 1,145
13년 전 조회 2,327
13년 전 조회 1,312
13년 전 조회 2,558
13년 전 조회 2,197
13년 전 조회 2,031
13년 전 조회 1,888
13년 전 조회 5,319
13년 전 조회 3,712
13년 전 조회 2,068
13년 전 조회 1,149
13년 전 조회 1,810
13년 전 조회 2,293
13년 전 조회 2,020
13년 전 조회 1,817
13년 전 조회 1,495
13년 전 조회 1,134
13년 전 조회 1,575
13년 전 조회 1,410
13년 전 조회 1,219
13년 전 조회 1,211
13년 전 조회 1,682
13년 전 조회 1,123
13년 전 조회 1,080
13년 전 조회 1,170