Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- oracle not exists
- input box
- javascript
- 2NE1
- html
- oracle not in
- error
- 태그를 입력해 주세요.
- DATABASE
- java
- Modeling
- 링크
- 미라지
- jqeury
- 검색
- 이클립스
- jquery
- Oracle
- 설치
- 오라클
- 한글
- 개발자
- iTunes
- 10g
- Download
- 다운로드
- M480
- update
- eclipse
- SELECT UPDATE
Archives
- Today
- Total
not set
jQuery input box 선택시에 색상 넣기 본문
http://api.jquery.com/focus-selector/
<!DOCTYPE html>
<html>
<head>
<style>
.focused {
background: #abcdef;
}
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<div id="content">
<input tabIndex="1">
<input tabIndex="2">
<select tabIndex="3">
<option>select menu</option>
</select>
<div tabIndex="4">
a div
</div>
</div>
<script>
$( "#content" ).delegate( "*", "focus blur", function( event ) {
var elem = $( this );
setTimeout(function() {
elem.toggleClass( "focused", elem.is( ":focus" ) );
}, 0);
});
</script>
</body>
</html>
본문 출처 : 모던 웹을 위한 Javascript 입문 및 jQuery입문
'javascript > jQuery' 카테고리의 다른 글
jQuery 필터 선택자 (0) | 2012.01.17 |
---|---|
jQuery로 select box 및 check box의 값 가져오는 방법 (0) | 2012.01.17 |
jQuery 속성 선택자 (0) | 2012.01.17 |
jQuery 자식선택자, 후손 선택자 (0) | 2012.01.17 |
jQuery 클래스 선택자 (0) | 2012.01.17 |