본문 바로가기

전체글

(354)
문자열 연산자 서론에 설명 조금 더하기 //String operator 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 Document 문자열 연산 document.writeln("abc"+23+" "); document.writeln("35"+23+" "); document.writeln(35+23+"abc"+" "); //순서유의 s1 = "aaa"; s2 = "bbb"; document.writeln((s1==s2)+" "); document.writeln((s1!==s2)+" "); http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter http://colorscrip..
함수들 - alert() prompt() confirm() alert() 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 Document function a(){ alert("클릭하셨군요!"); } 클릭 http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs prompt("메시지", "기본값 입력") 사용자로부터 문자열을 입력 받아 리턴 confirm() 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1..
조건 연산자(삼항연산자) 조건? true:false 조건? true:false true, false부분 타입 같아야 합니다! 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 Document 조건 연산 var a = 3, b = 5; document.writeln((a>b)?a:b); document.writeln((a>b)?"a가 큽니다.":"b가 큽니다."); http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs ?..
비교 연산자, 논리 연산자 // Comparison operator, Logical operator 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 Document 비교, 논리 연산 var a = 13, b = 7; document.writeln(a==b); document.writeln(a!=b);//!는 부정(not) document.writeln(a>b); document.writeln(a>=b); document.writeln(a=2)); document.writeln((3>4)||(4>=2)); http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scri..
산술 연산자 // Arithmetic Operators 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 Document 산술연산 var x = 32; var total = 100 + x * 2 / 4 - 3; var div = x / 10; var mod = x % 2; document.writeln(x+" "); document.writeln(total+" "); document.writeln(div+" "); document.writeln(mod+" "); document.writeln("================== "); //////////////////////////////////////////////// var a = 3, b = 3, c = ..
상수 //literal 상수(literal) : 데이터 값 그 자체 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 Document 상수 //파란색은 예약어 var oct = 015; var hex = 0x14; var con = true; document.writeln(oct);//8진수 document.writeln(hex);//16진수 document.writeln(con);//boolean //자바스크립트는 자바보다 유연해요 아래에 처럼 "문자열" '문자열' 둘다 가능 document.writeln('문자열1'); document.writeln("문자열1"); http://colorscripter.com/info#e" target="_blank" style="c..
3 지역변수, 전역변수 ..... 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 32 33 34 35 36 Document 지역변수와 전역변수 //변수 선언 시점에 따라서 전역변수 & 지역변수 //변수 : 기본적으로 위에 선언하고 밑에 사용(반대는 불가능) //자바스크립트는 자바를 참고하여 만든 언어이지만 자바 스크립트는 변수 타입생략 가능 //선언 : 실행은 아니다. //전역변수 : 함수 밖에 선언된 변수 var c=10; function a1(){ a=10; // 지역변수 : 함수 안에 선언된 변수 b=a+20; d=b+c; document.write(d);//한라인에 코드가 끝나면 반드시 ; 입력 document.write(" "..
자바스크립트로 HTML 콘텐츠 출력 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 ex2.html document 활용 document 활용 네이버 //객체 document 는 웹페이지 그 자체 document.write("Welcome!"); document.write("2+3= "); document.write("7입니다. "); t=document.title; document.write(t); a = document.anchors.length; document.write(a); http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Script..