일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- toFixed()
- Excel
- 소스트리인증실패
- slideUp
- addClass
- selectoptions
- calc.plus
- Math.floor()
- Math.ceil()
- calc.minus
- FileZilla다운로드
- is_check
- push오류
- Git
- removeClass
- Math.round()
- 파일질라설치
- index %
- selectedIndex
- SUB함수
- 1521
- FileZilla설치
- 파일질라다운로드
- 파일질라설치오류
- excel중복체크
- ctrl+/
- hide
- 증가값
- Parent
- 주석이 먹히지 않을 때
- Today
- Total
목록JAVA_EE (186)
잡동사니에도 사랑을
DOCTYPE html> 스타일이 있는 웹 페이지 body{ background-color: mistyrose; } h3{ color: firebrick; } hr{ border: 5px solid rosybrown; } span{ color: paleviolentred; font-size: 20px; } CSS 스타일 맛보기 나는 웹 프로그래밍을 좋아합니다.
DOCTYPE html> 스타일 없는 웹 페이지 CSS 스타일 맛보기 나는 웹 프로그래밍을 좋아합니다.
DOCTYPE html> Insert title here html, body{ html태그, body태그에 스타일을 부여하겠습니다 ~ 라는 식으로 써도 좋고, margin: 500; /* 바깥쪽 여백*/ padding: 100px; /* 안쪽 여백*/ height: 90%; } .header { 클래스 속성으로 부여해도 좋다 width: 100%; height: 15%; background: darksalmon; } .nav{ width: 15%; height: 70%; float: left; background: mistyrose; } .section{ width: 70%; height: 70%; float: left; background: indianred; } .aside{ width: 15%; h..
DOCTYPE html> Insert title here function doSubmit(){ /*if(document.form1.user_name.value==""){ alert("이름을 입력하세요"); }*/ if(!document.form1.user_name.value){ alert("이름을 입력하세요"); document.form1.user_name.focus(); return false; } if(!document.form1.gender[0].checked && !document.form1.gender[1].checked){ alert("성별을 선택하세요"); document.form1.gender[0].focus(); return false; } if(document.form1.job.sele..
////////exam25 DOCTYPE html> Insert title here History 객체1 페이지 이동 앞 페이지로 이동 ////////examHistory DOCTYPE html> Insert title here History 객체2 이전 페이지로 이동
DOCTYPE html> Insert title here function random(n1, n2){ return Math.floor(Math.random()*(n2-n1+1)) + n1; } function authNo(){ var value = "" ; // 초기화 for(var i=1; i
////////exam23 DOCTYPE html> Insert title here function open1(){ // 새로운 창이 열린다. window.open("open.html"); // window 객체를 통해 열어준다 } function open2() { window.open("open.html", "", "width=300, height=500, scrollbars=no, toolbar=no, menubar=no, status=no, laction=no"); } function open3(url) { window.open(url, "monster", "width=300, height=500, scrollbars=no, toolbar=no, menubar=no, status=no, lactio..
DOCTYPE html> Insert title here function printTime() { var days = ["일", "월", "화", "수", "목", "금", "토"] // 배열 생성해준 것 days[0] => "일" var today = new Date(); // Date 클래스 생성... 자바가 아닌 자바 스크립트 var yy = today.getFullYear(); // 년 var mm = today.getMonth() + 1; // 월, 1월은 0으로 설정되었다. 2월은 1 var dd = today.getDate(); // 일 var i = today.getDay(); // 요일(0~6) var day = days[i]; var hh = today.getHours(); var mi..