jQuery浏览器检测?

时间:2010-12-21 10:03:01

标签: javascript jquery internet-explorer

是否有一种很好的方法可以使用jQuery检测用户的浏览器是否为Internet Explorer?

我在使用IE时遇到PNG图形问题,并且只有在用户使用IE查看网站时才想将它们换成GIF。

8 个答案:

答案 0 :(得分:21)

可以使用$.browser,是的,但是使用浏览器检测是个坏主意:

if($.browser.msie) { /* IE */ }

例如,更好的选项是$.support feature 检测,如下所示:

if(!$.support.opacity) { /* IE 6-8 */ }

$.support.opacity在样式中不支持opacity的浏览器中为false(尽管IE 7-8处理透明的PNG文件,因此这仍然不理想,具体取决于您所追求的内容) ...我个人认为你会给IE 7/8用户提供次优体验。

你应该真正做的是针对IE6,其中支持透明PNG(没有alpha过滤器),如下所示:

<!--[if IE 6]>
  <link rel="stylesheet" type="text/css" href="IE6ImageStyles.css">
<![endif]-->

答案 1 :(得分:7)

是的,您可以,但他们希望您使用jQuery.supporthttp://api.jquery.com/jQuery.support/

在这种情况下,请使用jQuery.support.opacity

编辑:当然,假设这是关于不透明度的。

答案 2 :(得分:3)

$。浏览器已在 1.9 中删除,因为现在建议通过$ .support首选功能检测

答案 3 :(得分:2)

为了更好地浏览器检测,jQuery强烈建议使用Modernizr之类的外部库,而不是依赖于jQuery.support中的属性或已弃用的jQuery.browser(从v1.9开始删除)< / p>

答案 4 :(得分:1)

$.browser.webkit
$.browser.safari
$.browser.opera
$.browser.msie
$.browser.mozilla

if ($.browser.msie) {
        //do something
}
else if ($.browser.mozilla) {
        //do something else
}

适用于jQuery 1.3

答案 5 :(得分:0)

查看$.browser功能。

要检测IE,您还可以更好地选择IE conditional comments

示例:

<!--[if IE]>
  Special instructions for IE here
<![endif]-->

答案 6 :(得分:0)

<script>
    jQuery.each(jQuery.browser, function(i, val) {
      $("<div>" + i + " : <span>" + val + "</span>")
                .appendTo(document.body);
    });</script>

$。browser.msie
用于IE

答案 7 :(得分:-1)

我意识到这不是一个答案 - 但我不能在评论中发布这个!

如果你要使用javascript,这段代码修复了ie6的png问题。我没有太多使用它,但是你需要一个名为x.gif的透明gif图像,它会自动完成剩下的工作。

// JavaScript Document

var supersleight    = function() {

    var root = false;
    var applyPositioning = true;

    // Path to a transparent GIF image
    var shim            = 'x.gif';

    // RegExp to match above GIF image name
    var shim_pattern    = /x\.gif$/i;



    var fnLoadPngs = function() { 
        if (root) {
            root = document.getElementById(root);
        }else{
            root = document;
        }
        for (var i = root.all.length - 1, obj = null; (obj = root.all[i]); i--) {
            // background pngs
            if (obj.currentStyle.backgroundImage.match(/\.png/i) !== null) {
                bg_fnFixPng(obj);
            }
            // image elements
            if (obj.tagName=='IMG' && obj.src.match(/\.png$/i) !== null){
                el_fnFixPng(obj);
            }
            // apply position to 'active' elements
            if (applyPositioning && (obj.tagName=='A' || obj.tagName=='INPUT') && obj.style.position === ''){
                obj.style.position = 'relative';
            }
        }
    };

    var bg_fnFixPng = function(obj) {
        var mode = 'scale';
        var bg  = obj.currentStyle.backgroundImage;
        var src = bg.substring(5,bg.length-2);
        if (obj.currentStyle.backgroundRepeat == 'no-repeat') {
            mode = 'crop';
        }
        obj.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + src + "', sizingMethod='" + mode + "')";
        obj.style.backgroundImage = 'url('+shim+')';
    };

    var el_fnFixPng = function(img) {
        var src = img.src;
        img.style.width = img.width + "px";
        img.style.height = img.height + "px";
        img.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + src + "', sizingMethod='scale')";
        img.src = shim;
    };

    var addLoadEvent = function(func) {
        var oldonload = window.onload;
        if (typeof window.onload != 'function') {
            window.onload = func;
        } else {
            window.onload = function() {
                if (oldonload) {
                    oldonload();
                }
                func();
            };
        }
    };

    return {
        init: function() { 
            addLoadEvent(fnLoadPngs);
        },

        limitTo: function(el) {
            root = el;
        },

        run: function() {
            fnLoadPngs();
        }
    };
}();

// limit to part of the page ... pass an ID to limitTo:
// supersleight.limitTo('header');

supersleight.init();