テーブル セルの値に奇妙な問題があります。
私のHTMLは次のようなものです:
<table>
<tr>
<td> celll </td>
<td> celll </td>
<td> celll </td>
</tr>
<tr>
<td> celll </td>
<td> <input type='text'> </td>
<td> <input type='text'> </td>
</tr>
</table>
input
タグが付いているセルを置き換えたい。
だから私:
$('table').find('td').each(function(){
if($(this).text()==''){
console.log('found input')
}
})
しかし、私のコードではそれを見つけることができないようです。
ここにヒントはありますか?