<script src="//code.jquery.com/jquery.min.js"></script>
<script>
$(function() {
$('#button-add-div').click(function() {
$("<div>", {
css: {
width: "200px",
height: "50px",
backgroundColor: "skyblue",
border: "1px solid royalblue"
},
}).appendTo("body");
});
});
</script>
<button id='button-add-div'>추가</button>
<script src="//code.jquery.com/jquery.min.js"></script>
<script>
$(function() {
$('#button-add-div').click(function() {
$("<div>", {
css: {
width: "200px",
height: "30px",
backgroundColor: "yellow",
border: "1px solid royalblue"
},
text: "안녕하세요 (클릭가능)",
click: function() {
alert('클릭됨');
}
}).appendTo("body");
});
});
</script>
<button id='button-add-div'>추가</button>