開発環境 メモ帳
実行環境 Internet Explorer 11

http://jquery.com/download/
上記サイトのUsing jQuery with a CDNを参照する。
※CDN=Contents Delivery Network

http://code.jquery.com/
そして上記サイトに行くよう促される。
jQuery CoreのjQuery 2.xの項目
jQuery Core 2.1.1のminifiedのリンクをコピーして使用する。

stripetable.html
<!doctype html>
<head>
<title>StripeTable</title>
<script src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
<script>
$(function(){	// $(document).ready(function(){
	$("table#stripe-table tr:even").css("background-color", "#fff");
	$("table#stripe-table tr:odd").css("background-color", "#eee");
});
</script>
</head>
 
<body>
<table id="stripe-table">
<tr><td>PC-9801</td><td>198210</td></tr>
<tr><td>PC-9801F</td><td>198310</td></tr>
<tr><td>PC-9801E</td><td>198311</td></tr>
<tr><td>PC-9801M</td><td>198411</td></tr>
</table>
</body>
 
最終更新:2014年07月05日 16:34