HTMLテーブルから値を取得するために次のスクリプトを使用します。innerTextを使用する と、IEとChrome Fineで動作します。しかし、FireFoxはエラーを表示します:row.cells [0] .innerText is undefined Source .If I use textContent It ChromeとFireFoxでは正常に動作しますが、IEは次のエラーを表示しますcells.0.textContent'はnullであるか、オブジェクトではありません。このスクリプトを変更する方法IE、Chrome、FireFoxでエラーなしで動作しますか?c = row.cells [0] .innerText.strip();のいずれかを使用します。またはc=row.cells [0] .textContent.strip();
function a()
{
var table = getServerObject("b");
var row,c;
for (var i = 2; i < table.rows.length - 1; i++)
{
row = table.rows[i];
if(row.cells.length==1)continue;
c= row.cells[0].innerText.strip(); //It was work in chrome and IE (or)
c=row.cells[0].textContent.strip();//It was work in chrome and FF
if(c==0)
{
//Something
}
}
}