IE8 is not rendering some of the HTML name entities

白昼怎懂夜的黑 提交于 2019-12-05 21:14:23

Browser support for named HTML entities has always been worse than support for numeric entities. After all, the number is the Unicode code point for the character while the name requires manual update of a lookup table in the browser's source code. Those entities you mention are just not supported by Internet Explorer as of version 8 (or even version 9, no idea about 10).

You already have a workaround but I recommend that you just switch to UTF-8 and avoid entities completely (save for & and other reasonable exceptions).

The HTML4 specification does not contain the scedil entity. http://www.w3.org/TR/html4/sgml/entities.html

However, the HTML5 specification does. http://www.w3.org/TR/2011/WD-html5-20110113/named-character-references.html

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!