요소 전체를 읽어들이거나 변경하는 속성
function innerHTMLEX(){
const test1 = document.getElementByID("test1");
test1.innerHTML = "<strong class = 'red'> 변경된 내용 </strong>"
}
요소에 작성된 내용만을 읽어들이거나 변경하는 속성
질문에 대한 "예"/"아니오" 결과를 얻고자 할 때 사용하는 대화상자를 띄우는 함수
function fnConfirm2(){
const qes = confirm("배경색을 초록색으로 바꾸시겠습니까?");
if(qes){
document.getElementById("confirmTest").style.backgroundColor="green";
}
}
텍스트를 작성할 수 있는 대화상자
function fnPrompt(){
const input = prompt("변경할 버튼명을 입력하세요");
// 입력한 값 or null
if(input != null){
document.getElementById("promptTest").innerText = input;
} else{
alert("취소되었습니다.")
}
// 비밀번호 확인할 때 !!!(프로젝트에서 쉽게 받기) --> 실무에선 안씀
}