상세 컨텐츠

본문 제목

Jquery 포커스를 얻을때 , 잃었을때

관리X 과거글

by 까먹기전에 2015. 3. 2. 15:09

본문

반응형

<!DOCTYPE html>

<html>

<head>

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>

<script>

$(document).ready(function(){

    $("input").focus(function(){

        $(this).css("background-color", "#cccccc");

    });

    $("input").blur(function(){

        $(this).css("background-color", "#ffffff");

    });

});

</script>

</head>

<body>


이름: <input type="text" name="fullname"><br>

이메일: <input type="text" name="email">


</body>

</html>


  $("input").focus(function(){ -- 태그명 input에 포커스를 얻었을떄 

  $(this).css("background-color", "#cccccc"); -- 해당 인풋태그의 css의 바탕색을 바꾼다.



  $("input").blur(function(){

        $(this).css("background-color", "#ffffff");

    }); 이거는 반대로 포커스를 잃었을때


자바스크립트랑 다르게 앞에 on 이 빠지고 ()가 붙고 그 안에 펑션을 직접 넣을수도 있다.

관련글 더보기