条件格式:我想使用 javascript 实现圆角,但前提是它在 IE 中
我使用 -moz-border-radius 和 -webkit-border-radius 来制作圆角。但据我们所知,IE 7 不支持这一点。我想做的是基本上使用 firefox 和 Safari 的标准,但是对于 IE 我想使用 javascript。通过使用此 http://www.editsite.net/blog/rounded_corners.html
我的问题是如何设置条件以便每个浏览器都知道渲染页面的方式?
I use -moz-border-radius and -webkit-border-radius for making rounded corner. However as we know IE 7 doesn't support that. What I would like to do is to basically use standard for firefox and Safari however for IE I would like to use javascript. by using this http://www.editsite.net/blog/rounded_corners.html
My question is how can i make conditional so that each browser know the way to render the page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 条件注释 包含
仅限 MSIE。
Use conditional comments to include a
<script>
for MSIE only.只需将 -moz-border-radius 和 -webkit-border-radius 规则保留在 CSS 中,IE 将完全忽略它们。您可以使用 条件注释 放置 IE 的 JavaScript,如下所示:
除 IE 之外的所有浏览器会完全忽略这一点。如果您只想对特定版本的 IE 执行此操作,请使用以下命令:
Just leave the -moz-border-radius and -webkit-border-radius rules in your CSS, IE will completely ignore them. You can place the javascript for IE using conditional comments like so:
All browsers other than IE will completely ignore this. If you want this only for a specific version of IE, use this instead: