使用 PHP 测试 IE
我正在开发一个将在多个不同上下文中使用的网页,虽然我通常不惜一切代价避免浏览器嗅探和条件语句,但这次没有办法解决它。
我正在尝试一种简单的方法,我希望我能得到一些关于这是否是个好主意的反馈。
我正在测试用户代理,然后如果用户代理是 IE,则在 html 中的元素(在我的例子中是 div)上回显一个类。
<?php echo (strpos(strtolower($_SERVER['HTTP_USER_AGENT']), 'msie') !== FALSE) ? ('classforie') : (''); ?>
然后在我的CSS中,我正在做一些类似的事情;
.classone { display: inline-block; }
.classone.classforie { zoom: 1; display: inline; }
请注意,CSS 不是重要的部分,我只是为了示例而编造的。我只是想知道这样做是否是一个好的做法?
I am developing a web page that will be used in several different contexts, and while I normally avoid browser sniffing and conditional statements at all costs, there is just no way around it this time.
I'm trying a simple method, and I was hoping I could get some feedback on whether this is a good idea or not.
I am testing for the user agent and then echoing a class on the element in the html (in my case, a div) if the user agent is IE.
<?php echo (strpos(strtolower($_SERVER['HTTP_USER_AGENT']), 'msie') !== FALSE) ? ('classforie') : (''); ?>
Then in my css, I am doing something along the lines of this;
.classone { display: inline-block; }
.classone.classforie { zoom: 1; display: inline; }
Note, the CSS isn't the important part, I just made that up for the sake of example. I'm just wondering if doing things this way is a good practice or not?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不可以。使用条件注释。用户代理嗅探是不可靠的。
No. Use conditional comments. User agent sniffing is unreliable.
绝对不能在 IE6 下运行。
我通常看到的方法是在 BODY 标记上输出类。我认为 IE6 和 HTML 标签上的类可能存在一些问题。
然后你会得到这样的东西:
Definitely does not work in IE6.
The way I've usually seen it done is to output the class on the BODY tag. I think there might be some issues with IE6 and classes on the HTML tag.
Then you will have something like this: