언어/javascript
javascript : confirm
하이후에호
2020. 11. 28. 19:07
반응형
<!DOCTYPE html>
<head>
</head>
<body>
<script>
// 변수를 선언합니다.
var input = confirm('수락하시겠습니까?');
// 출력합니다.
alert(input);
</script>
</body>


반응형