[Jquery]斑马线表格

时间:2014-11-19 07:05:46   收藏:0   阅读:894
<!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>

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!