메뉴 건너뛰기

조회 수 8513 추천 수 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");
     }


List of Articles
번호 제목 날짜 조회 수
127 배너 램덤으로 부여주기 2014.03.01 5918
126 주민등록번호 체크 file 2014.03.01 5947
125 iframe을 리로드 하자! 2014.03.01 5950
124 도메인 체크 2016.12.22 5954
123 버튼 삭제 2015.02.03 5967
122 함수의 arguments 를 이름(key)으로 접근하기 2016.09.21 5987
121 iframe 자동 리사이즈 2014.03.01 6007
120 부드럽게 페이지 이동하기 2016.09.11 6015
119 새로고침(F5) 금지 2018.03.28 6017
118 셀렉트(select) change 이벤트 (split) 2016.12.23 6020
117 'open', 새창을 열어보자! file 2015.02.03 6060
116 엔코딩/디코딩 함수 2016.09.21 6068
115 해상도에 따라 배경 바꾸기 2014.03.01 6094
114 input 테그안의 숫자 3자리 마다 콤마 찍기 2014.03.01 6097
113 구구단 반복문,조건문 변경해서 만들기 2016.09.11 6109
112 현재시간 기준 날짜 계산 2016.09.21 6117
111 유효성 검사, 모든 폼에 값이 입력되도록 해보자! file 2015.02.03 6134
110 JDK6 (Java SE Development Kit 6)이하 버전 다운로드 주소 file 2016.09.11 6171
109 textarea의 글자수 제한 2014.02.27 6174
108 자바스크립트로 네트워크 연결 확인하기 (Navigator onLine Property) file 2015.06.19 6211
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 11 ... 13 Next
/ 13

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

© k2s0o1d4e0s2i1g5n. All Rights Reserved