我一直试图在表格上循环选择所有td并将颜色更改为白色
j$('#accessSml1 tr').each(function(){
j$(this).find('td').each(function(){
//alert('hi');
//document.getElementById(j$(this)).style.backgroundColor = '';
j$(this).style.backgroundColor = '';
})
})
我不确定如何添加我们所用的td来更改背景颜色。 尝试了一些如上所示的选项。
TypeError: j$(...).style is undefined
有人有什么建议吗?感谢
答案 0 :(得分:0)
j$('#accessSml1 tr td').css('background-color','white')