當我提醒document.formname.elements.length
結果時mozilla不考慮使用以下函數在表中動態添加的元素。Mozilla中的javascript innerHTML
var rowCounter = 1;
for (i=0; i<oldIndex.length; i++)
{
newRow = tableToSort.insertRow((oldIndex.length+rowCounter));
for (c=0; c<tableToSort.rows[i+1].cells.length; c++)
{
newCell = newRow.insertCell(c);
newCell.innerHTML = tableToSort.rows[oldIndex[i]].cells[c].innerHTML;
newCell.className="tblfirstcol";
}
rowCounter++;
}
這裏有什麼問題?
Mozilla(該軟件)已經死了半年。你的意思是Firefox? – Quentin 2012-02-23 11:39:03
ohhhhhh是的,我指的Firefox – chetan 2012-02-23 11:40:18
假設你分配控制元素,在FF正常工作的新電池您將需要擴大你的測試用例 – 2012-02-23 11:51:04