谷歌浏览器 insertCell与appendChild的区别
摘要:而使用appendChild方法增加列,显示结果的先后顺序与程序执行的先后顺序相同详细可以执行以下代码:复制代码代码如下:姓名描述地址
而使用appendChild方法增加列,显示结果的先后顺序与程序执行的先后顺序相同
详细可以执行以下代码:
复制代码 代码如下:
<html>
<script type="text/javascript"><></script>
<body onload="generatable()">
<table width=100 bgcolor=#f3f3f3 id=info border=1>
<thead>
<tr>
<td>姓名</td>
<td>描述</td>
<td>地址</td>
</tr>
</thead>
<tbody>
</tbody>
</table>
</body>
</html>
【谷歌浏览器 insertCell与appendChild的区别】相关文章:
★ window.onload与$(document).ready()的区别分析
★ 浅谈javascript中for in 和 for each in的区别
★ JavaScript中的this,call,apply使用及区别详解
★ JavaScript中的lastIndexOf()方法使用详解
上一篇:
js 判断 enter 事件