我有一个动态创建的表格TD。 创建的所有TD都有一个CLASS。 我已将第一个子显示设置为NONE。 我只需要在第一个孩子上删除或重命名这个类。 有没有人对我如何做到这一点有任何想法?
由于
答案 0 :(得分:7)
$('table td:first').removeClass('className')
或
$('table td:first').toggleClass('className')
答案 1 :(得分:1)
$(".tdClass").get(0).className = "newClassName"
应该做你想做的事。 或
$($(".tdClass").get(0)).removeClass("tdClass");
答案 2 :(得分:0)
来自jQuery文档 - http://api.jquery.com/first-child-selector/
$(".myTable TD:first-child").removeClass("old-class-name").addClass("new-class-name");
或
$(".myTable TD:first-child").attr("class", "old-class-name");
答案 3 :(得分:0)
$(#tableid td:first-child').removeClass('oldClass').addClass('newClass');
将起作用,前提是您替换为#tableid
的正确ID。