浏览器检测到 Opera 问题

发布于 2024-11-07 13:03:12 字数 586 浏览 0 评论 0 原文

他我正在使用 this 脚本来检测浏览器,但它似乎没有实现 css在歌剧中。 所以,在 browserdetect.js 中我有这个:

{
  prop: window.opera,
  identity: "Opera"
},

在我的 html 中我有这个:

else if (BrowserDetect.browser == "Opera") {
    document.write ('<link href="styles/style.css" media="screen" rel="stylesheet" type="text/css" />');

它似乎在其他浏览器中正常工作,但在 Opera 中它只是无法实现 在页面的头部。 你能建议可能是什么问题吗?谢谢。

Him I'm using this script to detect browsers, but it seems to not to implementing css in opera.
So, in browserdetect.js i have this:

{
  prop: window.opera,
  identity: "Opera"
},

And in my html i have this:

else if (BrowserDetect.browser == "Opera") {
    document.write ('<link href="styles/style.css" media="screen" rel="stylesheet" type="text/css" />');

It seems to be working properly in other browsers, but in Opera it just fails to implement <link href="styles/style.css" media="screen" rel="stylesheet" type="text/css" /> in head part of the page.
Can you suggest what could be the problem? Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

悟红尘 2024-11-14 13:03:12

这有效,因此您还有其他问题

http://jsfiddle.net/mplungjan/sWvqk/

BrowserDetect.init();  
alert("Opera? "+BrowserDetect.browser+":"+(BrowserDetect.browser=="Opera"))

This works so you have other issues

http://jsfiddle.net/mplungjan/sWvqk/

BrowserDetect.init();  
alert("Opera? "+BrowserDetect.browser+":"+(BrowserDetect.browser=="Opera"))
-残月青衣踏尘吟 2024-11-14 13:03:12

如果您仅对 opera 和 css 有问题,为什么不尝试编辑当前的 css 以添加 opera 特定的调用呢?

此代码只能用于在 css 中定位 opera:

@media all and (-webkit-min-device-pixel-ratio:10000), not all and (-webkit-min-device-pixel-ratio:0) {

            #my-id { clear:right; }

        }

请参阅此处有关这些浏览器 CSS 调用的更多信息

If your having an issue with only opera and css, why not try and edit your current css to add opera specific calls?

This code can be used to target opera only in css:

@media all and (-webkit-min-device-pixel-ratio:10000), not all and (-webkit-min-device-pixel-ratio:0) {

            #my-id { clear:right; }

        }

See here for more on these browser css calls

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