開発環境 |
メモ帳 |
実行環境 |
Internet Explorer 11 |
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>1982年10月</td></tr>
<tr><td>PC-9801F</td><td>1983年10月</td></tr>
<tr><td>PC-9801E</td><td>1983年11月</td></tr>
<tr><td>PC-9801M</td><td>1984年11月</td></tr>
</table>
</body>
最終更新:2014年07月05日 16:34