zoukankan      html  css  js  c++  java
  • jQuery学习教程(五):选择器综合实例

    以下实例综合讲解了几个选择器的使用,同时演示了使用jQuery实现隔行换色、荧光棒特效、复选框checkbox全选反选效果

    <script type="text/javascript"> 
    	$(function(){  
    		$("table tr:even").addClass("tdOdd"); 
    		$("th:first").css("background","#B4C6C1");//首个  
    		$("table tr").mouseover(function(){ 
    			$(this).addClass("tdOver");}).mouseout(function(){  
    			$(this).removeClass("tdOver");}).click(function(){//荧光棒  
    		$(".tdClick").removeClass("tdClick");$(this).addClass("tdClick");  
    		})//行锁定   
    		$("input:checkbox:first").click(function(){  
    		$("input:checkbox:not(input:checkbox:first)").each(function(){//剔除本身  
    		$(this).attr(  "checked",$("input:checkbox:first").attr("checked"));  
    		})    
    		})    
    		$("input:checkbox:not(input:checkbox:first)").click(function(){  
    		var flag=true;   
    		$("input:checkbox:not(input:checkbox:first)").each(function(){  
    		if(!this.checked){flag=false;}//不可使用if($(this).attr("checked","false")){flag=false;}<P></P>  
    		});  
    		$("input:checkbox:first").attr("checked",flag);  
    		})    
    		});  
    </script> 
    <style type="text/css">  
    body{  
    	font-size:12px; 
    	color:#366; 
    }  
    table{  
    	border:none; 
    	background:#fefefe; 
    	100%; 
    	border-collapse:collapse;  
    }  
    th{  
    	background:#CFDEC6; 
    	padding:4px; 
    	color:#000; 
    }  
    td,.tdNormal{ 
    	border:#cfdec6   solid   1px;  
    	padding:4px; 
    	background:fefefe; 
    }  
    .tdOdd{  
    	background:#f1fefa; 
    }  
    .tdOver{  
    	background:#F5FAF7; 
    }  
    </style> 
    </head> 
    <body> 
    <table> 
    	<tr> 
    		<th>姓名</th> 
    		<th>年龄</th> 
    		<th>专业</th> 
    	</tr> 
    	<tr> 
    		<td>王洪剑</td> 
    		<td>22</td> 
    		<td>电气自动化</td> 
    	</tr> 
    	<tr> 
    		<td>李川川</td> 
    		<td>20</td> 
    		<td>计算机</td> 
    	</tr> 
    	<tr> 
    		<td>陈超</td> 
    		<td>22</td> 
    		<td>计算机</td> 
    	</tr> 
    	<tr> 
    		<td>秦玉龙</td> 
    		<td>21</td> 
    		<td>计算机</td> 
    	</tr> 
    	<tr> 
    		<td>刘威</td> 
    		<td>21</td> 
    		<td>计算机</td> 
    	</tr> 
    	<tr> 
    		<td>张会会</td> 
    		<td>21</td> 
    		<td>计算机</td> 
    	</tr> 
    	<tr> 
    		<td>胡海生</td> 
    		<td>30</td> 
    		<td>计算机</td> 
    	</tr> 
    	<tr> 
    		<td>吴雄</td> 
    		<td>22</td> 
    		<td>计算机</td> 
    	</tr> 
    </table>
    

      

  • 相关阅读:
    The 16th Zhejiang Provincial Collegiate Programming Contest Sponsored(E F G H I)
    Ubuntu iso下载地址(14、16、18)
    JS解决在提交form表单时某个值不存在 alter弹窗点确定不刷新界面
    搞搞电脑微信表情的破解(.dat转png or jpg)
    12.29 模拟赛
    bzoj 2151 种树
    bzoj 5110 Yazid的新生舞会
    【系列】 点分治
    12.8 模拟赛
    12.17 模拟赛
  • 原文地址:https://www.cnblogs.com/rmbteam/p/2113452.html
Copyright © 2011-2022 走看看