1

我正在使用文章QueryLoader2 – Preload your images with ease中的预加载器。在大多数桌面浏览器中运行良好,但我在 iOS 上遇到了问题。

有没有办法在不提供不同页面的情况下排除运行脚本的 iOS 设备?

这是我的代码:

$(document).ready(function () {
    $("body").queryLoader2({
        barColor: "#FFFFFF",
        backgroundColor: "#000000",
        percentage: true,
        barHeight: 1,
        completeAnimation: "grow",
        minimumTime: 1000
    });
});

window.addEventListener由于某种原因,我无法使用 iOS。

4

2 回答 2

2

您可以检查用户代理字符串。

if(!((navigator.userAgent.match(/iPhone/i)) || 
   (navigator.userAgent.match(/iPod/i)) ||
   (navigator.userAgent.match(/iPad/i)))) {
    // do non iOS stuff here
}

你的代码看起来像

$(document).ready(function () {
    if(!((navigator.userAgent.match(/iPhone/i)) || 
      (navigator.userAgent.match(/iPod/i)) ||
      (navigator.userAgent.match(/iPad/i)))) {

        $("body").queryLoader2({
            barColor: "#FFFFFF",
            backgroundColor: "#000000",
            percentage: true,
            barHeight: 1,
            completeAnimation: "grow",
            minimumTime: 1000
        });
    }
});

我还会查看该页面上提供的 iOS 代码,看看是否能解决您的问题。

window.addEventListener('DOMContentLoaded', function() {
    $("body").queryLoader2();
});
于 2012-06-18T03:57:05.867 回答
1

检查 Iphone 用户代理字符串并根据该结果有条件地预加载图像

于 2012-06-18T03:54:50.470 回答