HTML中鼠标放上后字的颜色怎么变白
<html><head><metahttp-equiv="Content-Type"content="text/html;charset=gb2312"/><title>...
<html >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>表格隔行换色</title>
<style type="text/css" media="screen">
table {border-collapse:collapse;border:solid #999;border-width:1px 0 0 1px;}
table td {border:solid #000000;border-width:0 1px 1px 0;}
tr.t1 td {background-color:#fff;}/* 第一行的背景色 */
tr.t2 td {background-color:#99FFFF;}/* 第二行的背景色 */
tr.t3 td {background-color:#0000FF;}/* 鼠标经过时的背景色 */
-->
</style>
</head>
<body>
<table id="tab" border="1">
<th width="180" height="25">大学</th>
<th width="130">类型</th>
<th width="150">优势学科</th>
<th width="80">地点</th>
<tr>
<td height="25">大连理工大学</td>
<td>研究型</td>
<td>力学、化工等</td>
<td>大连</td>
</tr>
</table>
<script type="text/javascript">
<!--
var Ptr=document.getElementById("tab").getElementsByTagName("tr");
function $() {
for (i=1;i<Ptr.length+1;i++) {
Ptr[i-1].className = (i%2>0)?"t1":"t2";
}
}
window.onload=$;
for(var i=0;i<Ptr.length;i++) {
Ptr[i].onmouseover=function(){
this.tmpClass=this.className;
this.className = "t3";
};
Ptr[i].onmouseout=function(){
this.className=this.tmpClass;
};
}
</script>
</body>
</html>
谁能帮我改一下,鼠标放上后能让字的颜色变成白的~ 展开
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>表格隔行换色</title>
<style type="text/css" media="screen">
table {border-collapse:collapse;border:solid #999;border-width:1px 0 0 1px;}
table td {border:solid #000000;border-width:0 1px 1px 0;}
tr.t1 td {background-color:#fff;}/* 第一行的背景色 */
tr.t2 td {background-color:#99FFFF;}/* 第二行的背景色 */
tr.t3 td {background-color:#0000FF;}/* 鼠标经过时的背景色 */
-->
</style>
</head>
<body>
<table id="tab" border="1">
<th width="180" height="25">大学</th>
<th width="130">类型</th>
<th width="150">优势学科</th>
<th width="80">地点</th>
<tr>
<td height="25">大连理工大学</td>
<td>研究型</td>
<td>力学、化工等</td>
<td>大连</td>
</tr>
</table>
<script type="text/javascript">
<!--
var Ptr=document.getElementById("tab").getElementsByTagName("tr");
function $() {
for (i=1;i<Ptr.length+1;i++) {
Ptr[i-1].className = (i%2>0)?"t1":"t2";
}
}
window.onload=$;
for(var i=0;i<Ptr.length;i++) {
Ptr[i].onmouseover=function(){
this.tmpClass=this.className;
this.className = "t3";
};
Ptr[i].onmouseout=function(){
this.className=this.tmpClass;
};
}
</script>
</body>
</html>
谁能帮我改一下,鼠标放上后能让字的颜色变成白的~ 展开
6个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询