下面的代码:
var html = document.implementation
.createDocument("http://www.w3.org/1999/xhtml","html", null),
body = document.createElementNS("http://www.w3.org/1999/xhtml", "body");
html.documentElement.appendChild(body);
body.appendChild(document.createTextNode("Lorispum"));
alert(html.body) // 这句在firefox下显示的是未定义, 而在chrome下则有内容
firefox的实现是否有问题?
--
FROM 125.33.13.*