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,756
13년 전 조회 1,960
13년 전 조회 1,894
13년 전 조회 3,727
13년 전 조회 2,157
13년 전 조회 2,361
13년 전 조회 1,808
13년 전 조회 2,794
13년 전 조회 1,857
13년 전 조회 1,995
13년 전 조회 1,729
13년 전 조회 1,747
13년 전 조회 1,797
13년 전 조회 1,853
13년 전 조회 3,007
13년 전 조회 2,022
13년 전 조회 2,124
13년 전 조회 3,007
13년 전 조회 2,170
13년 전 조회 3,793
13년 전 조회 1,684
13년 전 조회 4,360
13년 전 조회 1,798
13년 전 조회 4,601
13년 전 조회 2,173
13년 전 조회 2,156
13년 전 조회 2,478
13년 전 조회 1,470
13년 전 조회 1,545
13년 전 조회 2,539
13년 전 조회 3,077
13년 전 조회 1,798
13년 전 조회 1,541
13년 전 조회 1,706
13년 전 조회 1,671
13년 전 조회 2,476
13년 전 조회 2,091
13년 전 조회 1,535
13년 전 조회 1,524
13년 전 조회 1,630
13년 전 조회 1,857
13년 전 조회 1,782
13년 전 조회 1,547
13년 전 조회 2,362
13년 전 조회 1,720
13년 전 조회 6,937
13년 전 조회 2,098
13년 전 조회 1,731
13년 전 조회 2,763
13년 전 조회 1,554
13년 전 조회 2,502
13년 전 조회 3,981
13년 전 조회 1,536
13년 전 조회 1,545
13년 전 조회 1,668
13년 전 조회 1,551
13년 전 조회 1,458
13년 전 조회 1,721
13년 전 조회 1,461
13년 전 조회 2,002
13년 전 조회 2,001
13년 전 조회 1,739
13년 전 조회 1,490
13년 전 조회 1,675
13년 전 조회 2,421
13년 전 조회 1,433
13년 전 조회 3,426
13년 전 조회 3,141
13년 전 조회 2,999
13년 전 조회 2,307
13년 전 조회 1,629
13년 전 조회 4,803
13년 전 조회 2,625
13년 전 조회 3,096
13년 전 조회 1,492
13년 전 조회 1,438
13년 전 조회 2,592
13년 전 조회 1,585
13년 전 조회 2,813
13년 전 조회 2,473
13년 전 조회 2,285
13년 전 조회 2,135
13년 전 조회 5,575
13년 전 조회 3,971
13년 전 조회 2,342
13년 전 조회 1,432
13년 전 조회 2,075
13년 전 조회 2,552
13년 전 조회 2,295
13년 전 조회 2,107
13년 전 조회 1,805
13년 전 조회 1,447
13년 전 조회 1,853
13년 전 조회 1,711
13년 전 조회 1,535
13년 전 조회 1,519
13년 전 조회 1,974
13년 전 조회 1,425
13년 전 조회 1,381
13년 전 조회 1,454