<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head><title></title><link href="css/style.css" rel="stylesheet" type="text/css" /><!-- 引入jQuery --><script src="../scripts/jquery-1.3.1.js" type="text/javascript"></script><script type="text/javascript"> $(function(){ $("tbody>tr:odd").addClass("odd"); //先排除第一行,然后给奇数行添加样式 $("tbody>tr:even").addClass("even"); //先排除第一行,然后给偶数行添加样式 $("tbody>tr").click(function() { $(this).addClass(‘selected‘) .siblings().removeClass(‘selected‘) .end()//当前对象是$(this),当进行addclass(‘selected‘)操作时,对象并未发生变化,当执行siblings().removeclass(‘selected‘)操作时, //对象已经变成为了$(this).siblings(),后面的代码都是针对这个对象,如果需要重新返回到$(this)对象,就可以使用end()方法。 .find(‘:radio‘).attr(‘checked‘,true); }) })</script></head><body> <table> <thead> <tr><th> </th><th>姓名</th><th>性别</th><th>暂住地</th></tr> </thead> <tbody> <tr><td><input type="radio" name="choice" value="" /></td><td>张山</td><td>男</td><td>浙江宁波</td></tr> <tr><td><input type="radio" name="choice" value="" /></td><td>李四</td><td>女</td><td>浙江杭州</td></tr> <tr><td><input type="radio" name="choice" value="" /></td><td>王五</td><td>男</td><td>湖南长沙</td></tr> <tr><td><input type="radio" name="choice" value="" /></td><td>找六</td><td>男</td><td>浙江温州</td></tr> <tr><td><input type="radio" name="choice" value="" /></td><td>Rain</td><td>男</td><td>浙江杭州</td></tr> <tr><td><input type="radio" name="choice" value="" /></td><td>MAXMAN</td><td>女</td><td>浙江杭州</td></tr> </tbody> </table></body></html>
时间: 2024-10-21 14:25:32