使用asp+sqlserver2000编写的学生管理系统
源代码在线查看: control.js
// JavaScript Document
var selectRow=null;//记录上一次click过的行
var pointRow=null;//记录上次mouseover过的行
function moveRow(src){
if(pointRow!=null)
{
pointRow.style.backgroundColor="#FFFFFF";
pointRow.style.cursor="hand";
}
if(src!=selectRow){
pointRow=src;
pointRow.style.backgroundColor="#B6D3FC";
}
}
function clickRow(src){
if(selectRow!=null){
selectRow.style.backgroundColor="#FFFFFF";
selectRow.style.color="#000000";
}
selectRow=src;
selectRow.style.backgroundColor="#B6D3FC";
selectRow.style.color="#FFFFFF";
pointRow=null;
}
//-->