//设置选中的行样式。
function SetSelectTrClass(seltr, selclass, unselclass) {
var thetable = seltr.parentElement;
//i从1开始是因为列名的样式不变
for (var i = 1; i var tr = thetable.rows[i];
tr.className = unselclass;
}
seltr.className = selclass;
}
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn