とを使用してテーブルtd
テキストを取得しようとしていますJquery
javascript
私は次のものを持っています
//tables contain bunch of tables
for(var i = 0; i < tables.length ; i ++){
var table = tables[i];
$(table 'td').each(function(){ //I know there is something wrong with my selector.
$(this).text()
})
私のjquery
場合、セレクターは機能しません。異なるテーブルのすべての td を選択するにはどうすればよいですか?
助けてくれてありがとう!