jQuery 圆角创建的额外标记有什么真正的缺点吗?
http://www.malsup.com/jquery/corner/
有什么真正的缺点吗(像 SEO)使用 javascript 生成的 DIV 逐像素创建圆角,而不是在查看标记时感到眼睛酸痛?
http://www.malsup.com/jquery/corner/
Is there any real disadvantage (like SEO) to creating the rounded corners pixel by pixel using javascript generated DIVs other than being an eye-sore when looking at the markup?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不会有明显的 SEO 影响。没有人能说 100%,但有 99.999% 的可能这不会以任何方式影响 SEO。
There will be no noticeable SEO hit. No one can say 100%, but it's 99.999% likely that this will not affect SEO in any way at all.
它可能不会给您带来任何 SEO 问题,但几乎肯定会导致性能下降。最好对支持 border-radius 属性的浏览器使用 CSS3 属性,并为其他功能较差的浏览器保留方形边框。
It may not give you any SEO problems, but it will almost certainly result in a performance hit. Much better to just use CSS3 properties for browsers which support
border-radius
properties, and leave borders square for other, less capable browsers.