wEb/javascript

.live() 와 .bind()

dd2i 2013. 9. 28. 17:34
반응형

 

.live() 함수

<!DOCTYPE html>
<html>
<meta charset="utf-8">
<head>
<style>
	* {
		margin: 5px;
		padding: 5px;
		border: 2px solid black;
	}

</style>

<script type ="text/javascript" src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script type ="text/javascript">

$(document).ready(function(){
	
	$('h1').live('click', function(){ //live함수 이용해서 클릭이벤트 등록. 
		var len = $('h1').length; //h1태그의 갯수를 구해라.
		var test1 = $(this).html();
		$('#test').append('

' + len + ':' + test1 + '

'); }); }); </script> </head> <body>

header

</body> </html>


.bind() 함수

<!DOCTYPE html>
<html>
<meta charset="utf-8">
<head>
<style>
	* {
		margin: 5px;
		padding: 5px;
		border: 2px solid black;
	}

</style>

<script type ="text/javascript" src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script type ="text/javascript">

$(document).ready(function(){
	
	$('h1').bind('click', function(){ //live함수 이용해서 클릭이벤트 등록. 
		var len = $('h1').length; //h1태그의 갯수를 구해라.
		var test1 = $(this).html();
		$('#test').append('

' + len + ':' + test1 + '

'); }); }); </script> </head> <body>

header

</body> </html>

 

 

반응형