我制作了一个脚本来为表格行着色。我的脚本仅适用于 Internet Explorer 8 或更高版本。如何使我的脚本跨浏览器?
window.onload = (function()
{
"use strict";
var c = 0, i, j, t = document.getElementsByTagName("tbody"), r;
for(i = 0; i < t.length; i++)
{
r = t[i].getElementsByTagName("tr");
for(j = 0; j < r.length; j++)
{
if(c%2 === 1)
{
r[j].setAttribute("class", "colored");
}
c++;
}
c = 0;
}
});