Differences between revisions 1 and 2
Revision 1 as of 2007-02-24 18:18:32
Size: 616
Editor: 168
Comment:
Revision 2 as of 2008-09-02 08:19:47
Size: 805
Editor: 203
Comment:
Deletions are marked like this. Additions are marked like this.
Line 5: Line 5:
CSS , XPath 식의 Expression을 사용하여 원하는 DOM을 쉽게 선택하고 조작 할 수 있다. [CSS], [XPath] 식의 Expression을 사용하여 원하는 [DOM]을 쉽게 선택하고 조작 할 수 있다.
Line 9: Line 9:
 * [http://blog.insightbook.co.kr/entry/jQuery-%EA%B7%B8-%EB%A7%B9%EB%A0%AC%ED%95%9C-%EC%B6%94%EA%B2%A9%EC%9D%B4-%EB%AC%B4%EC%84%AD%EB%8B%A4 jQuery 그 맹렬한 추격이 무섭다]

[JavaScript] 라이브러리

[http://jquery.com/ jQuery]

[CSS], [XPath] 식의 Expression을 사용하여 원하는 [DOM]을 쉽게 선택하고 조작 할 수 있다.

관련문서

예제

<table>
        <thead><tr><th>번호.</th></tr></thead>
        <tbody>
        <tr><td>1</td></tr>
        <tr><td>2</td></tr>
        <tr><td>3</td></tr>
        <tr><td>4</td></tr>
        </tbody>
</table>
<script>
$('tbody tr:even').background("blue"); //짝수 Row만 배경을 파랗게. Cool~!
</script>


CategoryProgramLibrary

jQuery (last edited 2012-11-03 11:13:20 by 221)

web biohackers.net