私のページには、タグ付きの classname 属性があります。クラス名にはスペース文字が追加されます。そのスペース文字がどこから来ているのかわかりませんか?それはどこから来ているのですか?
次のコードがあります
if (collection[i].getAttribute("class") === "modified") {
var item = collection[i];
$(item).text("1");
editRowId = null;
$("#txtId").val("");
$("#txtName").val("");
}
$("#centerTable").append("<tr id='tableRow'><td id='rowid' class='hiddenColumn'>" + "-1" + "</td><td id='centerid'>" + centerid + "</td><td id='centerAddress'>" + centeraddress + "</td><td id='details'>" + txtDetails.value + "</td><td><a href='#' onclick='EditRecord(this)'>Edit</a></td><td><a href='#' onclick='DeleteRecord(this)'>Delete</a></td><td class='modified'>3</td></tr>");
属性 classname = "modified " の値があります。空白はキラーです。クラス名の近くにスペースがないHTMLコードをチェックしました。