분류 전체보기 338

Java_Util

// 입력창 var p = prompt("내용", "기본값"); //입력을 해야 진행 console.log(p); // 입력값 //시간 경과 후 출력되는 경고창 function alarm(){ alert("3초 후에 출력되는 경고창") } setTimeout(alarm, 3000) //3초마다 출력되지만, 10초 후에 종료되는 콘솔 setInterval(function(){ console.log("10초 뒤에 종료"); clearInterval(set); }, 100000 ); //일정시간에 함수를 반복 실행하며 출력되는 콘솔 var set = setInterval(function(){ console.log("3초마다 출력"); }, 3000 );

Java_OutPut

head> basic //1. 개발자도구(f12 - console)에 출력 //console.log(내용) console.log("hello2", 100, "aaa"); //2. 브라우저에 출력 //document.write(내용) document.write("hello4") //3. 경고창에 출력 alert("test"); 브라우저 hello //4. 특정 태그, 클래스, ID에 출력 //document.getElementBy~(식별자).inner~= 내용 document.getElementById("test1").innerText = "test1출력" document.getElementById("test2").innerHTML = "test2출력"

BootStrap_Modal

DOCTYPE html> Insert title here 모달창 테스트 모달창 제목 상기 내용을 화인했습니다. 확인했습니다 닫기 Launch demo modal Modal title ########################################### ########################################### ########################################### ########################################### ########################################### ########################################### ################################..