Differences between revisions 3 and 4
Revision 3 as of 2008-09-11 13:38:17
Size: 870
Editor: 203
Comment:
Revision 4 as of 2008-10-05 23:34:01
Size: 899
Editor: 218
Comment:
Deletions are marked like this. Additions are marked like this.
Line 11: Line 11:
 * http://visualjquery.com/

[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