我无法从每个内部获取 $(this)。我正在尝试在移动一行后重置表格的 css。“#newTaskBody”是 tbody 的 id。“.newProjectTask”是 s 的类。
// make the table sortable;
$("#newTaskBody").sortable({
stop: function() {
var counter = 0;
$.each(".newProjectTask", function() {
console.log(this.id);
if(counter == 0)
{
$(this).removeClass("even odd");
$(this).addClass("even");
counter = 1;
}
else
{
$(this).removeClass("even odd");
$(this).addClass("odd");
counter = 0;
}
});
}
});
控制台.log(this.id); 尽管我正在测试 4 行,但返回 undefined 15 次。我尝试过“停止”、“更新”和“更改”事件。