我需要在来自 JSON 的生成内容块中添加一个类。我相信它在toggleClass 上咆哮,因为HTML 实际上还没有生成。我想我可能需要以某种方式使用 .on() 或 .live() 。
我没有收到错误,只是没有添加课程。同样,因为我相信表格内容是动态构建的。
这是相关的代码。
// The data variable is a block of JSON
for(i=1; i < data.length; i++){
foo += '<tr id="'+data[i][2]+'">test</tr>';
// Here's where I am trying to add the class, but it is not working. We check to see if a value in our JSON is true, if so - we change the class.
if(data[i][1]){
$("#"+data[i][2]).toggleClass("newClass"); // finds the ID by unique name
}
}