私はテーブルを操作していますが、現在の行と次の行を操作する必要があります。私の関数は次のようになります。
function test(row) {
alert(row.id); //it gives me the current row id, it works.
nextrow = row.nextSibling.nextSibling; //not sure why, but i have to use it twice to get the right one.
alert(nextrow.id); //this gives me the next row's id, also works.
alert(row.id); //this also gives me the next row's id...it should give me the current one.
}
実際のオブジェクトをどこかに保存して、変更されないようにすることができれば、何か考えはありますか? ありがとうございました。