일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- push오류
- Excel
- 파일질라설치오류
- is_check
- excel중복체크
- FileZilla설치
- 1521
- Git
- Math.ceil()
- Parent
- removeClass
- Math.round()
- Math.floor()
- addClass
- 파일질라설치
- slideUp
- calc.plus
- index %
- 주석이 먹히지 않을 때
- SUB함수
- hide
- ctrl+/
- selectedIndex
- 소스트리인증실패
- FileZilla다운로드
- calc.minus
- 파일질라다운로드
- selectoptions
- toFixed()
- 증가값
- Today
- Total
목록JAVA_EE/JavaScript (28)
잡동사니에도 사랑을
[21.09.14] exam20 & calc.js(JavaScript) ////////exam20 객체(Class) - 변수와 함수의 집합 - Javascript는 Prototype 기반의 객체지향언어이다. => 객체를 원형(prototype) 형태로 생성하고, 그 안에 기능을 위한 함수나 변수를 추가하는 방법으로 그룹화 하는 개념 => 객체는 자주 사용하게 될 기능들을 묶어서 외부의 스크립트 파일로 분리해내는 용도로 주로 사용한다. 이렇게 만든 스크립트 파일은 여러 개의 HTML파일에 의해서 참조하여 재사용할 수 있다. Test.java class Test { private int a; - 필드.....oracle에서는 변수 public void sub()P{} - 메소드 } TextMain.java ..
[21.09.14] practice02(JavaScript) - 옵션 선택 후 새 창을 열어 사이트에 접속하는 방법 옵션 선택으로 사이트 접속 옵션 선택마다 새 윈도우에 접속합니다. 선택하세요 구글 네이버 다음 options[target.selectedIndex].text : 셀렉트 박스 옵션 사이에 있는 텍스트 값을 가져온다. options[target.selectedIndex].value : 셀렉트 박스 value 의 값을 가져온다.
DOCTYPE html> Insert title here window.onload = function() {// 처음 실행하자마자 뜰 수 있도록 window.onload를 써준다 var kakao = document.getElementsByName("kakao") // 카카오라는 Name속성을 가진 요소'들' alert(kakao.length[0]); for(var i=0; i
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..