码迷,mamicode.com
首页 > 其他好文 > 详细

隔行变色---bai

时间:2017-01-08 16:26:07      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:blog   idt   int   on()   html   doc   鼠标   type   asc   

<!DOCTYPE html>
<html>
	<style>
		.mousein
		{
			background-color:blue;
			cursor: pointer;
		}
		.odd  
		{
	      background-color: gray;
	      cursor: pointer;
		}			
	</style>
	<head>
		<meta charset="utf-8" />
		<title></title>
	</head>
	<script type="text/javascript" src="js/jquery.js" >
	</script>
	<body>
		<script>
			$(document).ready(
				function ()
				{
					//1  填充20行
					var html = "";
					for(var i=0;i<20;i++)
					{
						html += "<tr><td>"+(i+1)+"</td></tr>";
					}
					$("table").html(html);
					//2 实现隔行变色
					$("tr:odd").addClass("odd");
					$("tr:odd").mouseover(
						//当鼠标移动进去时,添加伪类
						function()
						{
							$(this).removeClass("odd");
							$(this).addClass("mousein");
						}						
					);
					$("tr:odd").mouseout(
						function()
						{
							$(this).removeClass("mousein");
							$(this).addClass("odd");
						}
					);
					$("tr:odd").click(
						function()
						{
							alert("这是第"+$(this).text()+"行!");
						}
					);
				}	
			);
		</script>
		<table border="1" width="50%">
		</table>
	</body>
</html>

  

隔行变色---bai

标签:blog   idt   int   on()   html   doc   鼠标   type   asc   

原文地址:http://www.cnblogs.com/ipetergo/p/6262065.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!