alert()
confirm()
prompt()
alert("경고창!"); // 경고창, 확인버튼
confirm("확인창"); // 확인창, 확인,취소버튼
prompt("제목?", "입력할 내용");
alert
confirm
prompt
document.write('화면에 그냥 출력');
let msg = (prompt("이름을 이력해 주세요", "")); // hello
console.log(msg);
html
<div id="content">
hello world
<h1 style="display: none;">hi~</h1>
</div>
js
let content = document.querySelector("#content");
console.log(content.innerHTML);
console.log(content.innerText);
console.log(content.textContent);
이외에 다른 많은 요소 선택 메소드가 있지만 아직 querySelecor만 배워서 이것만 작성
html
<div id="content">
hello world
<h1 style="display: none;">hi~</h1>
</div>
js
let content = document.querySelector("#content");
console.log(content.innerHTML);
console.log(content.innerText);
console.log(content.textContent);
html
<div>
<h1>로그인하기</h1>
<p id="p1">
로그인하기
</p>
<p id="p2">
로그인 여부
</p>
</div>
js
let id = prompt("ID를 입력해주세요");
let pw = prompt("Password를 입력해주세요");
const elP1 = document.querySelector("#p1");
const elP2 = document.querySelector("#p2");
let msg;
if (id == "admin" && pw == 1234) {
msg = "로그인 <big>성공</big>";
} else if (id == "admin" || pw == 1234) {
if (id != "admin") {
msg = "<strong>아이디</strong>가 틀렸습니다.";
} else {
msg = "<strong>패스워드</strong>가 틀렸습니다.";
}
} else {
msg = "아이디와 패스워드 모두 틀렸습니다.";
}
elP1.innerHTML = `내가 입력한 아이디 : ${id} <br> 내가 입력한 비밀번호 : ${pw}`;
elP2.innerHTML = msg;