为什么 jQuery .html() 方法不能在 IE8 中使用自定义标签?
我有以下 html 代码:
<mytag>
Just Some Text
</mytag>
我有这个 jQuery 命令
$('mytag').each(function () { alert($(this).html()); });
在除 IE 之外的所有浏览器中我都得到了内部 HTML,在 IE 中我没有。任何人都可以解开这个谜团吗?我已经用 IE8、Mozilla、Opera、Chrome 和 Safari 对此进行了测试
I have the following html code:
<mytag>
Just Some Text
</mytag>
And I have this jQuery command
$('mytag').each(function () { alert($(this).html()); });
In all browsers except IE I'm getting the inner HTML, in IE I'm not. Anyone can shed any light on this mystery? I've tested this with IE8, Mozilla, Opera, Chrome and Safari
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
因为 Internet Explorer 不会像您测试代码的其他浏览器那样对特定类型的无效 HTML 进行纠错。
我想你可以用以下方法绕过它(它适用于应用 CSS):
...但是你最好编写 HTML(或编写 XML 并将其作为 application/xml 提供)。
Because Internet Explorer doesn't error correct for that particular type of invalid HTML in the same way that the other browsers you have tested the code with do.
I would imagine that you can hack around it (it works for applying CSS) with:
… but you would be better off writing HTML (or writing XML and serving it as application/xml).
对于 IE,您需要将其放入标签中 ->
xmlns='mytag'
现在 IE 和所有其他浏览器都可以“看到”您的标记
For IE, you need put this in your tag ->
xmlns='mytag'
now IE and all other browsers can "see" your tag