Chinaunix
标题:
[问题][ie][firefox][显示]刚写的一个网页在ie不能显示在ff可以。
[打印本页]
作者:
panjun10
时间:
2006-01-06 21:38
标题:
[问题][ie][firefox][显示]刚写的一个网页在ie不能显示在ff可以。
初学。写了这个 在ie不能显示。在ff可以。该怎样改才能让它显示?
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>New Page 1</title>
<script language="javascript">
function addtd()
{
str=document.createTextNode("wahahaha");
tr=document.createElement("tr");
td=document.createElement("td");
td.appendChild(str);
tr.appendChild(td);
table=document.createElement("table")
document.body.appendChild(table)
table.appendChild(tr);
//alert(obj.nodeType);
}
</script>
</head>
<body>
<script language="javascript"> addtd();</script>
</table>
</body>
</html>
复制代码
[
本帖最后由 panjun10 于 2006-1-6 21:39 编辑
]
作者:
ives518
时间:
2006-01-07 22:01
function addtd()
{
table=document.createElement("table");
[b]tbody = document.createElement("tbody");[/b]
tr=document.createElement("tr");
td=document.createElement("td");
str=document.createTextNode("wahahaha");
td.appendChild(str);
tr.appendChild(td);
[b]tbody.appendChild(tr);[/b]
[b]table.appendChild(tbody);[/b]
//document.body.appendChild(table);
document.getElementsByTagName("body")[0].appendChild(table);
}
复制代码
对于IE加一个tbody可以解决你的问题,具体为什么,我也想知道答案
[
本帖最后由 ives518 于 2006-1-7 22:05 编辑
]
欢迎光临 Chinaunix (http://bbs.chinaunix.net/)
Powered by Discuz! X3.2