var downStrokeField;
function autojump(fieldName,nextFieldName,fakeMaxLength)
{
var myForm=document.forms[document.forms.length - 1];
var myField=myForm.elements[fieldName];
myField.nextField=myForm.elements[nextFieldName];
if (myField.maxLength == null)
myField.maxLength=fakeMaxLength;
myField.onkeydown=autojump_keyDown;
myField.onkeyup=autojump_keyUp;
}
function autojump_keyDown()
{
this.beforeLength=this.value.length;
downStrokeField=this;
}
function autojump_keyUp()
{
if (
(this == downStrokeField) &&
(this.value.length > this.beforeLength) &&
(this.value.length >= this.maxLength)
)
{
if (this.nextField.select) this.nextField.select();
this.nextField.focus();
}
downStrokeField=null;
}<div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]</div>
function autojump(fieldName,nextFieldName,fakeMaxLength)
{
var myForm=document.forms[document.forms.length - 1];
var myField=myForm.elements[fieldName];
myField.nextField=myForm.elements[nextFieldName];
if (myField.maxLength == null)
myField.maxLength=fakeMaxLength;
myField.onkeydown=autojump_keyDown;
myField.onkeyup=autojump_keyUp;
}
function autojump_keyDown()
{
this.beforeLength=this.value.length;
downStrokeField=this;
}
function autojump_keyUp()
{
if (
(this == downStrokeField) &&
(this.value.length > this.beforeLength) &&
(this.value.length >= this.maxLength)
)
{
if (this.nextField.select) this.nextField.select();
this.nextField.focus();
}
downStrokeField=null;
}<div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]</div>
게시글 목록
| 번호 | 제목 |
|---|---|
| 355 |
JavaScript
[자바스크립트] 상태표시줄 제어 + 간단한 복사 제어
|
| 352 |
Linux
/etc 디렉토리 아래의 파일들
2
|
| 351 |
기타
shadow 잠금 해제
|
| 350 | |
| 349 |
JavaScript
yum 업데이트 되는곳 7.3 or 페도라
|
| 348 |
MySQL
mysql 링크하기
|
| 347 | |
| 346 |
MySQL
mysql.sock 삭제 하였을 경우
|
| 345 | |
| 344 | |
| 343 |
JavaScript
ps 시 화면 짤리는부분 보이게 하기
|
| 342 | |
| 341 | |
| 340 |
기타
chmod 의 스틱키
|
| 339 |
JavaScript
tripwire 의 twr 파일 보기
|
| 338 |
JavaScript
최근 사용자 접속 리스트 보기
|
| 337 | |
| 336 | |
| 335 |
JavaScript
atd 데몬
|
| 333 |
JavaScript
portmap
|
| 332 | |
| 331 | |
| 330 |
JavaScript
md5sum 사용방법
|
| 329 |
JavaScript
TAR 압축방법
|
| 328 | |
| 325 | |
| 323 | |
| 322 |
JavaScript
umask 설정법
|
| 321 | |
| 320 |
기타
Find 명령어 활용
|
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기