innetHTML的一些问题
程序员文章站
2022-04-09 22:21:09
...
1.IE自动消除空白符
[b]IE8:[/b] |<P><B>hello </B>js </P>|
[b]Chrome:[/b] | <p> <b> hello </b>js </p> |
2.在IE中以下元素的innerHTML是只读的:
col、 colgroup、frameset、html、 head、style、table、tbody、 tfoot、 thead、title 与 tr
var div = document.createElement("div");
div.innerHTML = " <p> <b> hello </b>js </p> ";
console.log("|" + div.innerHTML + "|")
[b]IE8:[/b] |<P><B>hello </B>js </P>|
[b]Chrome:[/b] | <p> <b> hello </b>js </p> |
2.在IE中以下元素的innerHTML是只读的:
col、 colgroup、frameset、html、 head、style、table、tbody、 tfoot、 thead、title 与 tr
上一篇: 图片上打印中文
下一篇: numpy的一些问题