메뉴 건너뛰기

조회 수 8500 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

3가지 방법이 있다.

1. 페이지 로드할때 컨트롤에 포커스를 주는 스크립트를 작성한다.
    <html xmlns="http://www.w3.org/1999/xhtml" >
    <head runat="server">
        <title>제목 없음</title>
        <script type="text/javascript">
            function fn_focus()
            {
                document.getElementById("txt").focus();
            }
        </script>
    </head>
    <body onload="fn_focus()">
        <form id="form1" runat="server">
        <div>
            <input type="text" id="txt" runat="server" />
        </div>
        </form>
    </body>
    </html>

  또는 cs에서 스크립트를 문자열로 추가하거나..
    string script = string.Empty;
    script += "<script type='text/javascript'>document.getElementById('txt').focus();</script>";

    Page.RegisterStartupScript("Focus", script);

2. 폼테그 안에서 포커스를 줄 컨트롤을 지정한다.
    <html xmlns="http://www.w3.org/1999/xhtml" >
    <head runat="server">
        <title>제목 없음</title>
    </head>
    <body>
        <form id="form1" runat="server" defaultfocus="txt">
        <div>
            <input type="text" id="txt" runat="server" />
        </div>
        </form>
    </body>
    </html>

3. cs에서 페이지 속성에 추가한다.
    protected void Page_Load(object sender, EventArgs e)
    {
        this.Page.SetFocus("txt");
     }


  1. No Image 01Mar
    by
    2014/03/01 Views 6271 

    input 빈칸 체크

  2. No Image 01Mar
    by
    2014/03/01 Views 6083 

    해상도에 따라 배경 바꾸기

  3. 입력된 폼의 내용 똑같이 복사

  4. select 당일 날짜 출력

  5. 입력된 글씨수 제어

  6. No Image 17Mar
    by
    2014/03/17 Views 6270 

    따라다니는 배너

  7. No Image 17Mar
    by
    2014/03/17 Views 5518 

    이미지클릭시 옆에 큰이미지나오기

  8. No Image 17Mar
    by
    2014/03/17 Views 8697 

    특정부위 마우스 오버시 설명을 보여주는 소스

  9. No Image 17Mar
    by
    2014/03/17 Views 9362 

    이미지 마우스 드래그로 스크롤을 움직이는 소스

  10. No Image 02Feb
    by
    2015/02/02 Views 10180 

    자바스크립트 영문입력, 숫자만입력, 한글만 입력, 붙여넣기 방지

  11. No Image 03Feb
    by 조쉬
    2015/02/03 Views 8500 

    페이지 로드 할때 컨트롤에 포커스 주기

  12. No Image 03Feb
    by
    2015/02/03 Views 6530 

    마우스로 이미지크기 조절(자바스크립트)

  13. No Image 03Feb
    by
    2015/02/03 Views 5729 

    문자열 바꾸기

  14. No Image 03Feb
    by
    2015/02/03 Views 6349 

    라디오 바스 체크 유무 확인

  15. No Image 03Feb
    by
    2015/02/03 Views 5951 

    버튼 삭제

  16. No Image 03Feb
    by
    2015/02/03 Views 7673 

    양력-음력

  17. No Image 03Feb
    by
    2015/02/03 Views 6684 

    달력

  18. No Image 03Feb
    by
    2015/02/03 Views 9034 

    5초후 자동으로 창닫기

  19. 'focus', 엔터 누르고 이동하자!

  20. 유효성 검사, 모든 폼에 값이 입력되도록 해보자!

Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 13 Next
/ 13

하단 정보를 입력할 수 있습니다

© k2s0o1d4e0s2i1g5n. All Rights Reserved