我需要检查表行 (TR) 是否按名称具有类。到目前为止,我有以下内容:
var myClass = "myClass";
//only myClass if it doesn't exist already
if (!(rowGet.className == "myClass") || !(rowGet.className == "myClass anotherClass")) {
if (rowGet) { // only add the class if TR exists
rowGet.className = myClass;
}
}
rowGet 是表中的 TR。当我尝试 hasClass(myClass) 时,我收到一条错误消息,提示 HTMLTableElement 没有方法 hasClass。是的,我引用了 jQuery。