일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Oracle
- 이클립스
- error
- javascript
- 개발자
- 설치
- Modeling
- html
- SELECT UPDATE
- Download
- eclipse
- jquery
- 미라지
- iTunes
- update
- 2NE1
- DATABASE
- oracle not exists
- 오라클
- 다운로드
- 한글
- oracle not in
- jqeury
- java
- 검색
- input box
- 링크
- M480
- 10g
- 태그를 입력해 주세요.
- Today
- Total
not set
jQuery 문서 객체의 스타일 본문
1. $(selector).css(name, value);
2. $(selector).css(name, function(index, style) { } );
3. $(selector).css(object);
<!doctype html>
<html>
<head>
<title>jquery test</title>
<script src="http://code.jquery.com/jquery-1.7.js"></script>
<style>
.first { color:red; }
.second { color:pink; }
.third { color:orange; }
</style>
</head>
<body>
<script>
$(document).ready(function () {
});
</script>
<h1 class="first">Header-0</h1>
<h1 class="second">Header-1</h1>
<h1 class="third">Header-2</h1>
</body>
</html>
응용 예제)
<script>
$(document).ready(function () {
$('h1').css('color', 'red');
});
</script>
<script>
// 변수 선언
var color = {'red', 'white', 'purple'};
// 문서 객체의 스타일을 변경한다.
$('h1').css('color', function(index) {
return color[index];
});
</script><script>
// 변수 선언
var color = {'red', 'white', 'purple'};
$('h1').css({
color: function(index) {
return color[index];
},
backgroundColor: 'black'
});
</script>본문 출처 : 모던 웹을 위한 Javascript 입문 및 jQuery입문
'javascript > jQuery' 카테고리의 다른 글
jQuery 문서 객체의 생성 (0) | 2012.02.03 |
---|---|
jQuery html(), text() (0) | 2012.02.03 |
jQuery 객체 클래스 속성추가(addClass), 제거(removeClass), 속성검사(attr), 제거(removeAttr(name)) (0) | 2012.02.02 |
jQuery find() (0) | 2012.01.31 |
jQuery 객체 확장 $.extend (0) | 2012.01.31 |