日期:2014-05-16 浏览次数:20349 次
最近在研究? 跨浏览器的web前端编码,在网上看到很多关于利用js向表格中追加行的说法,如下方法:
<html> <head> <script> function cs(){ var cell = document.createElement("td").appendChild(document.createTextNode("foo")); var row = document.createElement("tr").appendChild(cell); document.getElementById("myTableBody").appendChild(row); } </script> </head> <body> <a href="javascript:void(0);" onclick="javascript:cs();return false;">追加</a> <table id="myTable" border="1"> <tbody id="myTableBody"></tbody> </table> </body> </html>
?他们说该方法在所有浏览器中都是可以用的,可是我在IE(7、8)中测试却是追加不上,其他浏览器是可以的。利用下面方法却是可以:
function cs(){ var row = document.createElement("tr"); var cell = document.createElement("td"); var foo = document.createTextNode("foo"); cell.appendChild(foo); row.appendChild(cell); document.getElementById("myTableBody").appendChild(row); }
?这个方法支持各个浏览器。但是代码有些啰嗦。如果各位有更好的方法 可以交流推荐一下啊。