메뉴 건너뛰기

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


List of Articles
번호 제목 날짜 조회 수
127 iframe 자동 리사이즈 2014.03.01 5992
126 함수의 arguments 를 이름(key)으로 접근하기 2016.09.21 5976
125 버튼 삭제 2015.02.03 5951
124 iframe을 리로드 하자! 2014.03.01 5933
123 도메인 체크 2016.12.22 5928
122 배너 램덤으로 부여주기 2014.03.01 5911
121 주민등록번호 체크 file 2014.03.01 5908
120 셀렉트(select) change href 이벤트 2016.12.23 5899
119 간단하게 우클릭 막는방법 2016.09.11 5879
118 iframe 높이 자동으로 잡아주기 2014.03.01 5855
117 스타일로 제목 자르기 2016.09.12 5833
116 (소스)jqury 롤오버 버튼 쉽게 만들기 file 2014.03.01 5784
115 select 당일 날짜 출력 file 2014.03.01 5780
114 자바스크립트 모음 2016.12.22 5778
113 3자리마다 콤마찍기 2014.02.27 5755
112 top 부분이 고정되는 슬라이딩 메뉴입니다 file 2014.03.01 5752
111 이전, 위로 이동 2016.12.23 5740
110 문자열 바꾸기 2015.02.03 5729
109 새창을 띠워서 focus주기 2014.03.01 5715
108 checkbox 한개 클릭으로 다른모든 checkbox 클릭되게 하기 2014.03.01 5709
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 11 ... 13 Next
/ 13

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

© k2s0o1d4e0s2i1g5n. All Rights Reserved