还提供有关如何创建链接的提示,是否只是 A 等还有我应该学习的更常见的 JQuery 命令。需要稍微指出正确的方向。
谢谢
<!DOCTYPE html>
<html>
<head>
<title></title>
<style>
table, th, td {
border: 1px solid black;
}
tr.nice td {
background: #FAFAD2;
}
tr.mouseon td {
background: #1E90FF;
}
</style>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script type ="text/javascript">
$("table1 tr).addClass("nice);
$("#table1 th").mouseover(function() { $(this).addClass("mouseon");
$("#table1 th").mouseout(function() { $(this).removeClass("mouseon");
</script>
</head>
<body>
<div id="table1">
<table>
<tr>
<th>A</th>
<th>B</th>
<th>C</th>
<th>D</th>
</tr>
<tr>
<td>A1</td>
<td>B1</td>
</tr>
</table>
</div>
</body>
</html>