if문 focus들어갓을때 나왔을떄
본문
if $("[type=text]").focus(function() {
$(this).prev().animate({opacity:1}, 700);
$(this).attr('placeholder', ' ');
$(this).css('border-bottom', '2px solid #0e7bfc');
} else {
}
});
포커스가가면 저위에 스타일이먹고 나오면 원상복구 되는 걸하고싶은데..
우선 이프문 부터 안먹히는데 방법좀알려주세요..
답변 3
$('[type=text]').on('focus',function(){
$(this).prev().animate({opacity:1}, 700);
$(this).attr('placeholder', ' ');
$(this).css('border-bottom', '2px solid #0e7bfc');
}).on('focusout',function(){
$(this).prev().animate({opacity:0}, 200);
$(this).attr('placeholder');
$(this).css('border-bottom', '1px solid #b2b2b2');
})
;
$('[type=text]').on('focus',function(){
});
$('[type=text]').on('focusin',function(){ //포커스 인
});
$('[type=text]').on('focusout',function(){ //포커스 아웃
});
안에 각 상태일때 원하시는 작업을 넣으시면 될거 같습니다.