일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- calculator
- script
- Crack(Serial Key)
- Backup(Restore)
- LiveCD(USB)
- UNIX
- Linux
- game
- SSH
- javascript
- 대항해시대
- Windows 10
- webhard
- MS Windows PE
- Disk Partition
- H/W
- network
- portable
- explorer
- program
- web
- MS windows
- Programming
- OS(operating system)
- apm
- FTP
- Network Info(Tool)
- PC
- Command
- Update
- Today
- Total
목록web (51)
<In Story>
보호되어 있는 글입니다.
보호되어 있는 글입니다.
http://mwultong.blogspot.com/2007/01/isnum-isnumeric-isnumber-javascript.html isNaN() 함수는 불린 값을 반환하는데, 참(true)을 반환하면 "숫자가 아니라는 뜻이고", 거짓(false)을 반환하면 숫자라는 뜻입니다. 이 논리값을, isNumber() 함수에서는, 뒤집어 주었습니다. 그리고 isNaN() 함수는, 빈 문자열과 공백도 숫자로 간주하는 문제가 있어서 이 부분도 처리했습니다. isNaN() 은 수학적 에러를 판단하는 데 사용하는 함수이고, 문자열의 숫자 여부를 판단하는 용도로 사용하는 것은 아닙니다. 그렇지만 isNaN() 함수를 사용하는 방법이 가장 간단하더군요. isNaN("문자") ==> true isNaN(숫자) ==>..
http://rankingis.com/?titlequery=자바스크립트-난수-랜덤-숫자-만들기-예제http://mwultong.blogspot.com/2006/11/random-javascript.html Math.floor(Math.random() * 100) + 1;이렇게 하면, 1에서 100까지 나오고 Math.floor(Math.random() * 10);이렇게 하면, 0에서 9까지 나오게 됩니다. 그럼 100에서 200까지의 난수를 구하려면 어떻게 할까요?위 예제와 거의 같으나 최소값은 100이고 최대값은 200이 되겠죠?function randomRange(n1, n2) {return Math.floor(Math.random() * (n2 - n1 + 1)) + n1;// Math.floor(..
function delay(_delay_gap) { /* gap is in millisecs */var _then,_now;_then = new Date().getTime();_now = _then;while((_now - _then) < _delay_gap) {_now = new Date().getTime();}return;} 시간이 지난후에 함수를 한번 실행시켜 주는 함수window.setTimeout("function name", delay_time); /* gap is in millisecs, window prefix를 생략하고 사용할 수 있다. */setTimeout("myFunction()", 3000); // 3초후 myFunction() 함수 실행setTimeout(function(){co..
http://www.ahnseungkyu.com/92 1. 브라우저는 전역 window 객체를 가지며 모든 전역변수는 window 객체의 프로퍼티로 지정된다. - window 객체는 생략될 수 있으므로 아래의 두 코드는 동일하다. var userName = 'Ahn SeungKyu'; window.userName = 'Ahn SeungKyu'; 2. window 객체의 다른 프로퍼티 - navigator . appName : 브라우저의 간단한 이름이다. IE : Microsoft Internet Explorer, FireFox : Netscape . appCodeName : 코드네임으로 호환을 위해 같은 이름을 사용한다. : Mozilla . appVersion : 버전정보이기는 하나 내부적으로 사용되는..
2015/09/12 - [Programming/Web] - 자바스크립트 전역객체 window , Javascript Global object window // [Programming] [Script] [Web] http://blog.lael.be/post/400 만약 당신이 지금http://www.test.com/ver2/index.php?wr_id=4&bbs=free라는 위치라면 window.location.protocol : http:window.location.host : www.test.com (주소)window.location.pathname : /ver2/index.php (경로)window.location.search : ?wr_id=4&bbs=free (파라미터)window.location..