第一种: 표현
代码如下:
<머리>
.tablestyle{
배경색:#CCCCCC; 테두리:#ff0000 실선 2px; 테두리 축소:축소; 커서:손; 너비:100%;
}
.tablestyle td{ border:#ff0000 솔리드 2px; 테두리 축소:접기;}
.테이블스타일 tr{
onmouseover:표현식(onmouseover=함수()
{
this.style.color='빨간색';
this.style.BackgroundColor='노란색'
});
onmouseout:표현식(onmouseout=함수()
{
this.style.col
this.style.BackgroundColor=''
}
);
}
11111111111 | 22222222222 |
33333333333 | 44444444 |
55555 | 66666666 |
77777777777 | 8888888888 |
第1行 | 제1장 |
제2행 | 제2장 |
3행 | 3행 |
4행 | 4행 | 第5行 | 第5列 |
------------------------ ---------------------
每个单元格变color:
제1행 | 제1행 |
제2 행 | 제2행 |
제3행 | 제3행 |
4행 | |
5행 | 5행 |
──────────────────────
以上書到expression,实现变得很方便,但是,经测试,在IE6(其它版本
我
不知道)上
很正常,현재firefox上无任何反应
… >
window.onload=function showtable(){
var tablename=document.getElementById("mytable");
var li=tablename.getElementsByTagName("tr");
for (var i=0;i<=li.length;i++){
li[i].style.BackgroundColor="#FFB584";
li[i].onmouseover=function(){
this.style.BackgroundColor="#FFFFFF";
}
li[i].onmouseout=function(){
this.style.BackgroundColor="#FFB584"
}
}
}
第1行 | 제1장 |
제2행 | 제2장 |
제3행 | 제3행 |
제4행 | 제4행 |
第5行 | 第5列 |
---------------------
실행 색상:
window.onload=function showtable(){
var tablename=document.getElementById("mytable");
var li=tablename.getElementsByTagName("tr");
for (var i=0;i<=li.length;i++){
if (i%2==0){
li[i].style.BackgroundColor="#FFB584";
}else li[i].style.BackgroundColor="#FFFFFF";
}
}
제1행 | 제1행 |
제2행 | 제2행 |
제3행 | 제3행 |
4행 | 4행 |
5행 | 5행 |