鼠标经过表格时背景色变化鼠标经过
鼠标经过单元格背景颜色发生变化请看代码:
新建网页 2
function changeto(id){
ckgroundColor='#33ff33'
}
function changeback(id){
ckgroundColor=''
}
在需要背景颜色发生变化的单元格标签内加上代码:
onMouseover="changeto(this)" onMouseout="changeback(this)"
当鼠标指向这个单元格时执行javascrirpt脚本程序changeto(id),当鼠标离开这个单元格时执行javascrirpt脚本程序changeback(id)
其中程序...全部
鼠标经过单元格背景颜色发生变化请看代码:
新建网页 2
function changeto(id){
ckgroundColor='#33ff33'
}
function changeback(id){
ckgroundColor=''
}
在需要背景颜色发生变化的单元格标签内加上代码:
onMouseover="changeto(this)" onMouseout="changeback(this)"
当鼠标指向这个单元格时执行javascrirpt脚本程序changeto(id),当鼠标离开这个单元格时执行javascrirpt脚本程序changeback(id)
其中程序changeto(id)的作用是接受传递的参数this(代表当前单元格)后,执行命令语句: ckgroundColor='#33ff33'
意思是:当前单元格的背景颜色为#33ff33
其中程序changeback(id)的作用是接受传递的参数this(代表当前单元格)后,执行命令语: ckgroundColor=''
意思是:当前单元格的背景颜色为""=没有颜色
如果把onMouseover="changeto(this)" onMouseout="changeback(this)"加到标签里,则当鼠标指向这个表格行时背景颜色发生变化,如果把onMouseover="changeto(this)" onMouseout="changeback(this)"加到标签里,则当鼠标指向这个表格时背景颜色发生变化:
表格变色-对任意表格元素起作用
function changeto(id){
ckgroundColor='#33ff33'
}
function changeback(id){
ckgroundColor=''
}
试试^_^。
收起