
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<link rel = "stylesheet" href = "../css/mystyle.css" type="text/css">
<script src="../js/jquery-3.6.0.min.js"></script>
<script>
$(function(){
$('.but').on('click', function(){
nbut = $('<button class="but" type = "button" >확인</button>')
nbut.appendTo($('#result1'));
})
$('#clear').on('click', function(){
$('.but').off('click');
})
})
</script>
</head>
<body>
<div class = "box">
<br>
<div class="cd">
<button class="but" type = "button" >확인</button>
</div>
<button type="button" id="clear" >해제</button>
<div class="cd" id ="result1"></div>
</div>
</body>
</html>