我只是更改文本,然后再正常工作。请任何人都可以帮助我。
预先感谢
答案 0 :(得分:0)
我解决了:
答案 1 :(得分:0)
我也遇到了同样的问题:
<script>
$('#myTable > tbody > tr > td:nth-child(4)').each(function(){
console.log($(this).text();) // Getting Yes, No Properly
if($(this).text() == 'Yes')
{
$(this).css('background-color', 'red');
}
</script>