일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- FileZilla설치
- Math.ceil()
- excel중복체크
- calc.plus
- Git
- 파일질라설치
- ctrl+/
- Excel
- selectoptions
- Math.round()
- FileZilla다운로드
- toFixed()
- removeClass
- 증가값
- calc.minus
- Parent
- 1521
- addClass
- 주석이 먹히지 않을 때
- slideUp
- selectedIndex
- hide
- 소스트리인증실패
- Math.floor()
- push오류
- index %
- is_check
- 파일질라설치오류
- SUB함수
- 파일질라다운로드
- Today
- Total
목록분류 전체보기 (273)
잡동사니에도 사랑을
DOCTYPE html> Insert title here // 배열 생성 // var myArray1 = ["홍길동", "자바스크립트", "학생"]; // [0, 1, 2] var myArray1 = new Array("홍길동", "자바스크립트", "학생"); // 내장객체가 아니라 자바스크립트에 존재 document.write(myArray1[0] + " "); document.write(myArray1[1] + " "); document.write(myArray1[2] + " "); myArray1[0] = "HongGilDong" myArray1[1] = "JavaScript" myArray1[2] = "Student" document.write(myArray1[0] + " "); document...
////////exam20 DOCTYPE html> Insert title here src를 쓸 때는 src="calc.js" /> 이런 식으로 막으면 안된다. 내용이 추가가 되지 않는다 document.write("calc"); calc.setValue(25, 36); calc.result(); calc.setValue(10, 30); document.write("덧셈 = " + calc.plus() + " "); document.write("뺄셈 = " + calc.minus() + " "); // 객체안에있는것이아니기때문에 calc.plus() / calc.minus() 이런 식으로 써주어야 한다. ////////calc.js // 빈 객체 선언 - Test t = new Test();의 t var..
[하위질의(SubQuery)] : 하나의 쿼리에 다른 쿼리가 포함되는 구조, ()로처리 select ~~~ from 테이블 where 컬럼 = (select ~~~) 1) 단일 행 서브쿼리(단일행반환) : > , =, 1개의 결과 2) 다중 행 서브쿼리(여러행반환) : in, any, all Main Query Sub Query -----> 여러 개의 결과 any : 비교 대상 중 최소값보다 큼 (ex. 과장직급의 급여를 받는 사원조회) = any : in연산자와 동일 all : 비교대상중 최대값보다 큼 (ex. 모든과장들의 직급보다 급여가 많은 사원조회) 3) 상관쿼리(correlated subquery) : EXIST 연산자는 하위 쿼리에 레코드가 있는지 테스트하는 사용 된다 : EXIST ..
DOCTYPE html> Insert title here function sum(x, y){ // 함수 생성 return x+y; } function printResult() { var result = sum(10, 20); // span 태그 얻어오기 --> id가 question인 태그 가져오기 var myTag = document.getElementById("question"); // alert(myTag); - 주소값이 나옴 // alert(myTag.tagName); // 명령을 치면 이 안에 있는 태그를 꺼내달라 //myTag.innerText = result; myTag.innerHTML = "" + result + ""; } 10 + 50 = ?
DOCTYPE html> Insert title here function sum(x, y){ // 함수 생성 return x+y; } function showResult() { var result = sum(10, 20); document.getElementById("question").innerHTML = "" + result + ""; } function hideResult() { document.getElementById("question").innerText = "?"; } 10 + 50 = ? 결과를 보시려면 수식 위에 마우스를 올리시오.
DOCTYPE html> Insert title here function insertQuestion(){ var input = prompt("사칙연산의 수식을 입력하세요. (예: 100+50)", "") // 문자열을 수식으로 변환시킨다 var answer = eval(input); // 식과 결과값을 document.getElementById("question").innerHTML = input + "=" + answer }
DOCTYPE html> Insert title here function doPrint(num) { var msg = "doPrint()가 " + num + "회 실행되었습니다."; alert(msg); document.getElementById("myid").innerHTML = msg; } doPrint(1); doPrint(2); 안녕하세요. doPrint(3);
DOCTYPE html> Insert title here #myid { background: #ff0; font-size: 20px; font-weight: bold; color: #00f; } function doPrint() { // 자바스크립트는 중복 아이디를 인식하지 못하고 가장 먼저 나타나는 id값만 인식한다. document.getElementById("myid").innerText = "스크립트가 실행되었습니다"; } 안녕하세요. 자바스크립트 입니다. 강의 참 재미있죠? 자바스크립트 함수 호출하기