在我当前的应用程序中,我需要将一个表的内容复制到另一个表中......通过设置 innerHTML 它在 FF 中完美运行......但在 IE8 中没有......这是我用来在 FF 中复制的代码:
getID("tableA").innerHTML = getID("tableB").innerHTML;
// getID is a custom function i wrote to provide a shorter version of document.getElementById();
TableA 为空(仅存在 tbody 标记)。TableB 看起来像这样:
table
tbody
tr
td "Content" /td
td "Content" /td
/tr
/tbody
/table
我已经尝试过使用 nodeValue.. 或 appendData... 或 outerHTML.. 但没有任何效果...