7

我一直在尝试找出外部图像是否使用 js 缓存在浏览器上,这是我到目前为止的代码:

<html>
    <head></head>
    <body>

    <script src="http://code.jquery.com/jquery-1.4.2.min.js"></script>

    <script>

        function cached( url ) {
            $("#imgx").attr({"src":url});
            if(document.getElementById("imgx").complete) {
                return true;
            } else {
                if( document.getElementById("imgx").width > 0 ) return true;
            }

            return false;
        }

    </script>

    <img id="imgx" src=""  />

    <script>

        $(document).ready(function(){
            alert(cached("http://www.google.com/images/srpr/nav_logo80.png"));
        });

    </script>

    </body>
</html>

它在 Firefox 上完美运行,但在 chrome 上总是返回 false。

有人知道如何使它与 chrome 一起使用吗?

4

1 回答 1

14

我已经用纯 JavaScript 重写了您的代码,使其更加独立于 jQuery。核心功能没有改变。 小提琴:http: //jsfiddle.net/EmjQG/2/

function cached(url){
    var test = document.createElement("img");
    test.src = url;
    return test.complete || test.width+test.height > 0;
}
var base_url = "http://www.google.com/images/srpr/nav_logo80.png"
alert("Expected: true or false\n" +
      cached(base_url)
      + "\n\nExpected: false (cache-busting enabled)\n" +
      cached(base_url + "?" + new Date().getTime()));
//false = not cached, true = cached

第一次,我得到false and false。再次运行代码后,我得到true and false.


使用.completeand .height+.width给出预期的结果(FF 3.6.23,Chromium 14)。

您很可能已禁用 Chrome 浏览器的缓存。如果没有,请检查您提供的图像的HTTP 标头Cache-control(是否存在?)。此标头存在于 Google 示例中

如果您想检测图像何时(未)完成加载,请查看此问题

于 2011-10-21T09:19:01.060 回答