HTML5 分段元素和中国浏览器
我正在构建一个项目,并使用 HTML5 分段元素和 HTML5 shiv/mordernizr 来处理旧版 IE。
然而,在构建网站时,我开始想知道基于中国的浏览器(例如360、Maxthon等)将如何解释HTML5分段元素以及使用它们是否安全。我在某处读到,许多中国浏览器某种程度上也使用IE trident引擎,所以我想知道这段代码是否会被它们解释:
---IE conditional tag open---
Load html5 shiv
---IE conditional tag close---
I was building a project and was using HTML5 sectioning elements and HTML5 shiv/mordernizr to handle older IEs.
However while building the website, I begin to wonder about how will the china based browsers (such as 360, Maxthon etc) interpret the HTML5 sectioning elements and is it safe to use them. I read somewhere that many of these chinese browsers are somewhat also using IE trident engine so I wonder if this piece of code will be interpreted by them:
---IE conditional tag open---
Load html5 shiv
---IE conditional tag close---
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
360安全浏览器只是一个Trident shell,所以它的渲染应该和IE一样。
根据 http://en.wikipedia.org/wiki/Maxthon,Maxthon 可以使用 Trident和Webkit,所以它的渲染应该与IE或Chromium相同,具体取决于引擎。
360 Secure Browser is simply a Trident shell, so its rendering should be the same as IE's.
According to http://en.wikipedia.org/wiki/Maxthon, Maxthon can use both Trident and Webkit, so its rendering should be the same as IE or Chromium depending on the engine.