페이지 상공 텍스트 상자를 이동할 때, 초점을 초점으로 바꾸고, 초점 지우기

2267 단어 텍스트 상자
var Page_INIT = function () {
    $(document).bind("mouseover", function (e) {// 
        if (e.target.tagName.toUpperCase() == "INPUT") {
            var input = e.target;
            if (input.type == "text") {// 
                if (window.Page_FocusTimer) {// 
                    window.clearTimeout(window.Page_FocusTimer);// 
                }

window.Page_FocusTimer = window.setTimeout(function () {
//0마다.2 호초는 이 익명 방법을 한 번 실행하세요.
                    if (!input.value) {// , 
                        try {
                            input.focus();
                        } catch (e) { }
                    }
                }, 200);
            }
        }
    }).bind("mouseout", function (e) {// 

if (e.target.tagName.toUpperCase() == "INPUT") {
//처리된 이벤트 소스 객체의 이름(즉 HTML 태그)이 대문자로 바뀌면 INPUT
            var input = e.target;
            if (input.type == "text") {
                if (window.Page_FocusTimer) {
                    window.clearTimeout(window.Page_FocusTimer);
                }
            }
        }
    });
}

좋은 웹페이지 즐겨찾기