728x90
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>JavaScript 긁지않은개발자</title>
</head>
<script>
function confirmDialogBox() {
var str;
if (confirm("확인이나 취소를 눌러주세요!") == true) {
str = "확인을 누르셨습니다.!";
} else {
str = "취소을 누르셨습니다.!";
}
document.getElementById("text").innerHTML = str;
}
</script>
<body>
<h1>버튼을 눌러주세요</h1>
<button onclick="confirmDialogBox()" >버 튼</button>
<p id="text"></p>
</body>
</html>
실행 결과
버튼을 눌렀을 경우
버튼 확인을 눌렀을 경우
버튼 취소를 눌렀을 경우
밑에 버튼이라는 글자를 눌러보세요~

버튼을 눌러주세요
728x90