我想绘制一条水平粗线,用于根据一列值分隔报表中的行。即,如果先前值和当前值相同,我想画一条水平线。为此,我编写了 jquery 编码,它在 mozilla 中工作正常,但在 IE 中没有。我犯了什么错误?
var a = 1;
$(".calbody tr td:nth-child(8) a").each(function() {
var foo = "<hr width=2000% ;'>";
if (a === 1) {
$(this).parents("tr:first").before(foo);
}
if (a != 1) {
var b = $(this).text();
if (a != b) {
$(this).parents("tr:first").before(foo);
}
}
a = $(this).text();
});