:::: 개발 ::::/::: JSCRIPT :::

동적으로 DIV 생성 바디 바로 아래 ~~

nayha 2014. 11. 6. 18:03

<html>

 

<head>

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

<script>

$(document).ready(function() {

// 동적으로 태그 추가!!!

//var tag = $('<div>'. { id: 'test_div2'} );

var tag = document.createElement("div");

tag.id = "test_div2";

tag.innerHTML  = "test222";

document.body.appendChild(tag);

//$('#test_div1').append(tag);

 

// 정적 click 이벤트

$('#test_div1').click(function() {

alert('test_div1 click');

});

 

// 동적 click 이벤트

$(document).on('click', '#test_div2', function(){ alert('test_div2 click'); } );

});

</script>

</head>


<body>

<div id='test_div1'> 정적 div </div>

</body>




</html> 



반응형