1
我有一個特定行的Specfic列
表樣式表格
我想
樣式的特定行的特定TD一張桌子。
我決定
遍歷每個row
,每一行中,我遍歷每個td
,並檢查是否是td
等於一個我要檢查。
我試圖
$('#account-table').each(function() {
$(this).find('td').each(function() {
var td = $(this);
if(td.innerText == '[email protected]'){
$(this).css('color','red');
}
});
});
我
我不能讓該列的文字是紅色。
任何提示/建議?
我更快的這段時間':)'。很高興見到你,@哈里 –
它的工作原理。我會在2分鐘內接受你的回答。感謝您的幫助。 – ihue