<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<script type="text/javascript" src="../jquery-1.7.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
/* $("input[type=checkbox]").click(function(){
alert(this.value+"버튼이 클릭 됨");
}); */
//나중에 생성된 것도 click이벤트 적용하기 위해 live사용
$("input[type=checkbox]").live("click",function(){
alert(this.value+"버튼이 클릭 됨");
});
$("input[type=button]").click(function(){
var chk = document.createElement("input");
chk.type="checkbox";
chk.value="새로운 체크박스";
document.getElementById("btn_layer").appendChild(chk);
});
});
</script>
</head>
<body>
체크박스 : <input type="checkbox" value="1번 체크박스" name="chk">
<input type="button" value="체크박스 생성">
<div id="btn_layer"></div>
</body>
</html>