pe/standard

Method

C/H 2006. 9. 22. 13:47

Windowwindow.alert('내용');메시지경고.
window.confirm('내용');확인, 취소 버튼 메시지 박스
window.prompt('내용','default value');입력 박스가
window.open('url','name','속성');새창 띄우기
window.close(); self.close(); close();현재의 창 닫기
window.location='url'; / href.location.href='url';지정 페이지 이동
String string.blink();깜박거리게
string.bold();굵게
string.fontcolor(color);텍스트 색상
string.italics();이탤릭체로
toLowerCase();toUpperCase();소문자로, 대문자로
string.charAt(index);지정된 문자열에서 하나의 문자를 반환. index는 문자열 순서(0부터)
string.substring(index A,index B)index A부터 index B까지의 문자열 반환
Math Math.abs();절대값
Math.ceil();지정한 수 이상의 정수(예: 2.4 -> 3)
Math.exp();오일러 상수 e(약,2.718)
Math.log();자연로그 값
Math.max();가장 큰 값
Math.min();가장 작은 값
Math.pow(a,b);a의 b만큼 제곱 값
Other history.go(-1);history.back();history.go()안의 수만큼 백버튼이나 앞으로의 버튼
history.forward();앞으로
location.reload();새로고침
변수.length;문자열의 길이
document.write('내용');내용을 html문서 내로 내보낸다.
document.linkColor="color";링크 색을 지정
document.bgColor="color";문서의 배경색 지정
document.fgColor="color";문서의 디폴트 텍스트 색상 지정.
document.alinkColor="color";활성화 링크 색상 지정.
document.vlinkColor="color";방문된 링크 색상 지정.
반응형

'pe > standard' 카테고리의 다른 글

노드(Node)  (0) 2006.09.22
Design  (0) 2006.09.22
Event  (0) 2006.09.22
DOM (Document Object Model)  (0) 2006.09.22
리퀘스트 헤더 (Request Header) & 리스판스 헤더 (Response Header)  (0) 2006.09.22