如何使用 javascript 使用 DOM 模型创建 Html 表?
如何使用 Javascript 使用 DOM 模型创建 Html 表?
例如:
<table width="100%" border="0" cellspacing="0" cellpadding="0" id="tblMCNRoles">
</table>
我有上面的表格,我想通过使用 DOM 模式创建来渲染上面的表格,如下所示。
<table width="100%" border="0" cellspacing="0" cellpadding="0" id="tblMCNRoles">
<tr>
<td bordercolor="green" align="center" valign="top" style="border-style:dotted" >
<table width="99%" border="0" cellspacing="0" cellpadding="0"
class="portlet-table-body intable5">
<tr><td align="center" valign="middle" class="grid6"></td></tr>
</table>
</td>
</tr>
</table>
How to create a Html table using DOM model using Javascript?
for ex:
<table width="100%" border="0" cellspacing="0" cellpadding="0" id="tblMCNRoles">
</table>
I have above table and i want to render above table like below by using DOM modal creation.
<table width="100%" border="0" cellspacing="0" cellpadding="0" id="tblMCNRoles">
<tr>
<td bordercolor="green" align="center" valign="top" style="border-style:dotted" >
<table width="99%" border="0" cellspacing="0" cellpadding="0"
class="portlet-table-body intable5">
<tr><td align="center" valign="middle" class="grid6"></td></tr>
</table>
</td>
</tr>
</table>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议您使用 DOM Table 方法,因为appendChild 和innerHTML 都不适合安全的跨浏览器操作。
DOM 有 insertRow 和 insertCell ,效果更好。
这是 IE 文档来自 Mozillas 开发人员的示例网络
I suggest you use the DOM Table methods since neither appendChild nor innerHTML are good for safe cross browser manipulation.
The DOM has insertRow and insertCell which works better.
Here is IE's documentation and here is an example from Mozillas Developer Network
或者你可以使用innerHTML,但是你必须先生成HTML
Or you can use innerHTML, but then you have to generate the HTML first