1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<style type="text/css">
.hover { cursor:hand; background-color:Yellow; }
</style>   
<script src="js/jquery-1.3.2-vsdoc2.js" type="text/javascript"></script>
<script type="text/javascript">
    $(document).ready(function () {
        $('table tr:gt(0)').hover(
            function () { $(this).addClass('hover'); },
            function () { $(this).removeClass('hover'); }
        );
    });
</script>
 
<table border="1">
    <tbody><tr>
        <td>제목</td>
    </tr>
    <tr>
        <td>ASP.NET</td>
    </tr>
    <tr>
        <td>ASP.NET</td>
    </tr>
</tbody></table>

제목
ASP.NET
ASP.NET
Posted by 파노카페
: