js设置表格行的单击、鼠标移动事件,光棒效果

var setTable = function(table_id) {
var table = document.getElementById(table_id);
var rows = table.getElementsByTagName("tr");
for (i = 1; i < rows.length; i++) {// 0 is start
var srcBgColor = null;//rows[i].style.backgroundColor;
rows[i].onmouseover = function() {
srcBgColor = this.style.backgroundColor;
this.style.backgroundColor = 'red';
};
rows[i].onmouseout = function() {
// this.style.backgroundColor = '';
this.style.backgroundColor = srcBgColor;
};
// this.className='selectedRow'
rows[i].onclick = function() {
//var cell = this.getElementsByTagName("td")[1];// 0 is start
//var entryId = cell.firstChild.nodeValue;
var entryId = this.cells[1].innerText;
location.href = '${basePath}bill/bill!retrieveByEntryId.action?bill.entryId=' + entryId;
this.style.cursor = "wait";
}

}
}

window.onload = function() {
init();
setTable("bm");
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值