博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jquery 隔行显示
阅读量:6441 次
发布时间:2019-06-23

本文共 1514 字,大约阅读时间需要 5 分钟。

 

<html>

<head>

<style>

.t{background:red;}
.yes{background:yellow;}
.ed{background:black;}
</style>
<script src="js/jquery-1.3.1.js"></script>
<script>
<!-- now i feel javascript is very at will and invisible -->
$(function(){

$("tbody>tr:odd").addClass("t");

$("tbody>tr:even").addClass("yes");
$("tr:contains('熊海洋')").addClass("ed");
 
});

</script>

<!--<script>

 $(function () {
         $('tbody>tr').click(function () {
            if (!$(this).hasClass("ed")) {
   alert("hello");
                $(this).addClass("ed").find(":radio").attr("checked", true);
            }
            else {
                $(this).removeClass("ed").find(":radio").attr("checked", false);
            }
        });
      
    })
</script>-->
<script>
$(function (){$('tbody>tr').click(function(){
if($(this).hasClass("ed")){
alert("have no class.");
}else{
$(this).addClass('ed').siblings().removeClass('ed').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="radiobutton" value="radiobutton"></td><td>杨阿明</td><td>男</td><td>新乡</td></tr>
<tr><td><input type="radio" name="radiobutton" value="radiobutton"></td> <td>王亚楠</td><td>男</td><td>卫辉</td></tr>
<tr><td><input type="radio" name="radiobutton" value="radiobutton"></td><td>蒋远强</td><td>女</td><td>福罗里达</td></tr>
<tr  style="color:red;"><td><input type="radio" name="radiobutton" value="radiobutton"></td><td>熊海洋</td><td>女</td><td>加利福尼亚</td></tr>
</tbody>
</table>
</body>
</html>

转载于:https://www.cnblogs.com/guligei/archive/2012/10/22/9029260.html

你可能感兴趣的文章
MySQL 5.7及以上解压缩版本配置安装
查看>>
Extjs4.0 Chart属性中文解释
查看>>
PHP单例模式的实现
查看>>
httpClient post 数据传输和处理
查看>>
newLISP你也行 --- 字符串
查看>>
【译】Swift 2.0 下面向协议的MVVM架构实践
查看>>
html5拖拽
查看>>
Android工具HierarchyViewer 代码导读(2) -- 建立Eclipse调试环境
查看>>
GC配置对性能的帮助
查看>>
java list按时间倒序、首字母排序
查看>>
hls之m3u8、ts流格式详解
查看>>
中国有望成为全球最大3D打印市场
查看>>
ecshop在其他的页面调用首页的flash主广告的方法
查看>>
lamp安装
查看>>
BDDynamicGridViewController
查看>>
【笔记】《活法》(稻盛和夫)
查看>>
C语言的一些误用和知识总结
查看>>
几何画板如何绘制动态正切函数图像
查看>>
实操演练!MathType几个绝妙小技巧!
查看>>
ChemDraw常用到的几种技巧
查看>>