일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- calc.minus
- SUB함수
- ctrl+/
- Math.floor()
- 파일질라설치
- hide
- addClass
- selectedIndex
- Excel
- selectoptions
- toFixed()
- Git
- calc.plus
- index %
- push오류
- 주석이 먹히지 않을 때
- 파일질라다운로드
- 증가값
- Math.ceil()
- slideUp
- Math.round()
- excel중복체크
- FileZilla다운로드
- FileZilla설치
- 소스트리인증실패
- 파일질라설치오류
- is_check
- Parent
- removeClass
- 1521
- Today
- Total
목록분류 전체보기 (273)
잡동사니에도 사랑을
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..
CSS(Cascading Style Sheets) 웹페이지에 자주 적용되는 부분들은 미리 정리하고 조합하여 정의한 후 페이지 내부에서 필요할 때마다 해당 부분을 적용하는 스타일시트 중 하나. HTML로는 부족한 레이아웃이나 폰트등에 다양성을 부여한다. - 폰트 크기는 지정하는 수치에 따라 마음대로 조절 가능 - 자간/행간 배치가 자유로워 가독성을 높인다. - 링크 상의 밑줄 변형이 자유롭다. - 페이지의 여백을 원하는 만큼 만들어 줄 수 있다. CSS 기본동작 (1) CSS 사용하는 방법 3가지 ① 사이 기술 ② 안에서 직접기술 ③ *.css(파일)로 따로 저장 (2) 기본구성 HTML5 기본 문법 HTML (HyperText Markup Language)은 웹 페이지를 기술하기 위한 '마크업 언어'이다..
[테이블생성] create table 테이블명(컬럼명1 컬럼타입 [제약조건], 컬럼명2 컬럼타입 [제약조건],.....); - 문자로 시작(30자이내) : 영문 대소문자, 숫자, 특수문자( _ , $ , # ), 한글 - 중복되는 이름은 사용 안됨 - 예약어(create, table, column등)은 사용할 수 없다 - 자료형 number : number(전체자리, 소수이하), number → 숫자형(가변형) int : 정수형 숫자(고정형) varchar/varchar2 : 문자, 문자열(가변형) → 최대 4000byte char : 문자, 문자열(고정형) → 2000byte date : 날짜형 clob : 문자열 → 최대4GB blob : 바이너리형(그림, 음악, 동영상..) → 최대4GB 여기서 잠..
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..