Contents

Views 7038 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

큐 형식의 배열 사용 샘플..

<html>
<head>
<title>JS test</title>

<script>
var map = new Array();

function view(){
    while(map.length>0){
        v = map.shift() + "<br>";
        document.write( v );
    }
}

function add(){
    form = document.manage;

    if(form.memo.value!="")
    {
        map.push( form.memo.value );
        form.memo.value = "";
        form.memo.focus();
    }
    return false;
}

</script>

</head>

<body>

<form name=manage onSubmit="return add();">
    <input type=text name=memo>
    <input type=button value=ADD onClick="add();">
    <input type=button value=VIEW onClick="view();">
</form>

<script> document.manage.memo.focus(); </script>

</body>

</html>


?

  1. [js] 큐 형식으로 배열사용.. ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views7038
    Read More
  2. [c] openssl 샘플코드.. 어려움 ㅠㅠ

    Date2013.04.23 CategoryDevelop Byhooni Views7037
    Read More
  3. [js] 이미지 미리 로딩하기

    Date2003.04.23 CategoryDevelop Byhooni Views7033
    Read More
  4. [c][java] 소켓 프로그래밍(채팅 서버 C, 클라이언트 Java)

    Date2003.04.23 CategoryDevelop Byhooni Views7029
    Read More
  5. [php] 메모장 - 웅지학원 ([c] mysql 백업프로그램 포함)

    Date2003.04.23 CategoryDevelop Byhooni Views7025
    Read More
  6. [js] 점점 커지는 새창..

    Date2003.04.23 CategoryDevelop Byhooni Views7020
    Read More
  7. [c] 패킷 에널라이저 예제 소스(성안당)

    Date2013.04.23 CategoryDevelop Byhooni Views6998
    Read More
  8. [c++] 템플릿(Template) 예제 소스..

    Date2013.04.23 CategoryDevelop Byhooni Views6996
    Read More
  9. [c] 소켓 프로그래밍 요약..

    Date2003.04.23 CategoryDevelop Byhooni Views6992
    Read More
  10. [web] 웹 연동 프로그램 모음..

    Date2013.04.23 CategoryDevelop Byhooni Views6980
    Read More
  11. [c] 단기과정[01/24] 정렬 알고리즘

    Date2003.04.23 CategoryDevelop Byhooni Views6974
    Read More
  12. [c++] 트리컨트롤 스텝 2 예제..

    Date2013.04.23 CategoryDevelop Byhooni Views6972
    Read More
Board Pagination Prev 1 ... 42 43 44 45 46 47 48 49 50 51 ... 71 Next
/ 71