私のバグに関する説明が必要です。
私の要件は、JavaScript を使用して動的に UI で使用される html タグ名を取得することです。コードが IE で実行された場所ですが、Mozila Firefox では適切ではありません。私のコード、
HTML コード:
<table>
<tr>
<td>
<input type="text" />
</td>
<td>
<select>
<option>p_string1</option>
<option>p_string5</option>
</select>
</td>
</tr>
</table>
JS:
for (i = 0; i < table.rows[0].cells.length; i++)
{
pNode[i] = table.getElementsByTagName('td')[i].childNodes[0].nodeName;
}
#text
タグ名の代わりに値を取得していますSelect
。しかし、タグ名を適切に取得するINPUT
..