使用 PHP 测试 IE

发布于 2024-10-16 14:35:43 字数 514 浏览 5 评论 0原文

我正在开发一个将在多个不同上下文中使用的网页,虽然我通常不惜一切代价避免浏览器嗅探和条件语句,但这次没有办法解决它。

我正在尝试一种简单的方法,我希望我能得到一些关于这是否是个好主意的反馈。

我正在测试用户代理,然后如果用户代理是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

幸福%小乖 2024-10-23 14:35:43

不可以。使用条件注释。用户代理嗅探是不可靠的。

No. Use conditional comments. User agent sniffing is unreliable.

枕花眠 2024-10-23 14:35:43
.classone.classforie { zoom: 1; display: inline; }

绝对不能在 IE6 下运行。

我通常看到的方法是在 BODY 标记上输出类。我认为 IE6 和 HTML 标签上的类可能存在一些问题。

然后你会得到这样的东西:

.msie .classone { zoom: 1; display: inline; }
.classone.classforie { zoom: 1; display: inline; }

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:

.msie .classone { zoom: 1; display: inline; }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文