개발 관련/JAVASCRIPT
-
Arguments() 객체개발 관련/JAVASCRIPT 2011. 10. 28. 17:11
Arguments() 객체는 배열과 유사한 객체이다. 함수(function)에서 전달인자에 접근 할수도 있고 해당 함수에 몇개의 전달인자가 있는지도 확인 할수 있다. 예를 들어 function write(x, y) { document.write(x*y, " "); } 라는 함수가 있을 때 첫 번째 전달인자는 매개변수 이름 x나 arguments[0]으로 접근이 가능하다 그리고 arguments.length로 전달인자가 몇개인지 확인 할 수있다. 해당 기능은 자바스크립트의 유연성을 고려해서 개발 할 때 유용하다. 예를 들면 위 함수에서 y를 생각하고 함수를 사용 할 경우(write(1)) 이경우에 전달인자 y의 유무를 검사해서 기본값을 줄 수 있다 function write(x,y) { if (argume..
-
toFixed() 메소드개발 관련/JAVASCRIPT 2011. 10. 18. 15:15
소수점 자릿 수를 정해주는 메소드 var num = new Number(13.3714); document.write(num.toFixed()+" "); document.write(num.toFixed(1)+" "); document.write(num.toFixed(3)+" "); document.write(num.toFixed(10)); 결과값: 13 13.4 13.371 13.3714000000 참조: http://www.w3schools.com/jsref/jsref_tofixed.asp
-
isFinite() 함수개발 관련/JAVASCRIPT 2011. 10. 18. 15:12
숫자 여부를 알려주는 함수 document.write(isFinite(123)+ " "); document.write(isFinite(-1.23)+ " "); document.write(isFinite(5-2)+ " "); document.write(isFinite(0)+ " "); document.write(isFinite("Hello")+ " "); document.write(isFinite("2005/12/12")+ " "); 결과값: true true true true false false 참조: http://www.w3schools.com/jsref/jsref_isFinite.asp
-
scrollHeight / clientHeight / scrollTop개발 관련/JAVASCRIPT 2010. 3. 15. 13:46
http://www.sunspell.net/160
-
Modifying Document개발 관련/JAVASCRIPT 2009. 11. 13. 13:41
Header To better understand the document tree, consider a web page that has a head and body section, has a page title, and contains a DIV element that itself contains an H1 header and to paragraphs. One of the paragraphs contains italicized text; the other has an image--not an uncommon web page. Second paragraph with image.
-
-
-
Modifying Named Elements개발 관련/JAVASCRIPT 2009. 11. 6. 15:08
option 1 option 2 Example 1 Paragraph -- IE 결과값(오페라) option 1 option 2 Example 1 Paragraph 4 elem4 A 6 elem6 FORM 7 elem7 INPUT -- FF 결과값(사파리,넷케이프 네비게이터) option 1 option 2 Example 1 Paragraph 1 elem1 DIV 2 elem2 UL 3 elem3 LI 4 elem4 A 5 elem5 P 6 elem6 FORM 7 elem7 INPUT 위의 경우에는 IE(오페라)가 옳다. 그 이유는 DIV, UL, LI, P 태그에 대해서는 이름 속성이 지원되지 않기 때문이다.