码迷,mamicode.com
首页 > Web开发 > 详细

[Jquery]斑马线表格

时间:2014-11-19 07:05:46      阅读:894      评论:0      收藏:0      [点我收藏+]

标签:des   blog   io   os   sp   java   for   on   div   

<!doctype html>
<html>
<head>
<script src=‘js/jquery-1.9.1.min.js‘></script>
<script type="text/javascript">
	$(document).ready(function() {
	$(‘tr:even‘).css(‘background‘,‘#dedede‘);
	$(‘tr:odd‘).css(‘background‘,‘#ffffff‘);
	});
</script>
<body>
	<table>
		<tr>
			<th>Product</th>
			<th>Description</th>
			<th>Price</th>
		</tr>
		<tr>
			<td>Paper Towels</td>
			<td>The most absorbent paper towels.</td>
			<td>$18.99</td>
		</tr>
		<tr>
			<td>Paper Napkins</td>
			<td>Perfect for your outdoor gathering.</td>
			<td>$16.99</td>
		</tr>
		<tr>
			<td>Paper Plates</td>
			<td>The best value.</td>
			<td>$5.99</td>
		</tr>
		<tr>
			<td>Plastic Forks</td>
			<td>The essential picnic accessory.</td>
			<td>$2.99</td>
		</tr>
	</table>
</body>
</html>

 

[Jquery]斑马线表格

标签:des   blog   io   os   sp   java   for   on   div   

原文地址:http://www.cnblogs.com/bushe/p/4107095.html

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