4

開発中のサイトでModernizr2.6.2を使用していて、IE8でイライラするエラーが発生しています。ドキュメントの先頭にModernizrを読み込んでいます:

<script src="js/vendor/modernizr-2.6.0-ck.js"></script>

</body>次に、ページの下部、終了タグの直前にbase.jsファイルをロードします。そのbase.jsファイルには、次のコードがあります(読みやすくするためのHastebinリンク)。

/**
 *  Non-jQuery hasClass function for checking the existence of
 *  class names on elements.
 *  @param {string} scripts The string of scripts to check
 *  @param {string} cls The class name we're looking for
 *  @return {boolean} True or false
 */
/*
function hasClass(scripts, cls) {
    var r = new RegExp('\\b' + cls + '\\b');
    return r.test(scripts);
}*/


/**
 *  Get ID from <body> tag
 */
function matchBodyID(match) {
    return match.toLowerCase() === document.body.id.toLowerCase();
}


/**
 *  Check to see if the body tag has a "data-scripts" attribute.
 *  If true, collect the contents. If false, set to false.
 */
// var dataScripts = document.body.getAttribute("data-scripts") || false;


/**
 *  Variables must be defined before we can use them.
 */
var Modernizr = Modernizr || {},
    ScaleText = ScaleText || {};


/*
 *  Using Modernizr.load, we can run our tests to see
 *  which features are available to us and load our
 *  polyfills to handle those that aren't
 */
var timestamp = new Date().getTime();
Modernizr.load([
    {
        load: [
            '//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.js',
            'js/plugins/image-array-ck.js?t=' + timestamp,
            'js/plugins/jquery.debouncedresize-ck.js',
            'js/plugins/menu-ck.js?t=' + timestamp
        ],
        complete: function () {
            if (!window.jQuery) {
                Modernizr.load('js/vendor/jquery-1.8.1.min.js');
            }
            ScaleText.invoke();
            $("#skip-to-content").bind("click.menu", function (event) {
                event.preventDefault();
                var $this = $(this),
                $par = $($this.parent());
                $par.toggleClass("open");
            });
        }
    }, {
        test: matchBodyID('home') || matchBodyID('department'),
        yep: [
            'js/plugins/spin.min.js',
            'js/slideshow-ck.js',
            'css/royalslider/royalslider.css',
            'css/royalslider/rs-minimal-white.css',
            'js/plugins/tabs-ck.js?t=' + timestamp,
            'js/plugins/underscore-min.js'
        ]
    }, {
        test: matchBodyID('interior'),
        yep: [
            'js/plugins/spin.min.js',
            'js/plugins/tabs-ck.js?t=' + timestamp,
            // 'js/plugins/menu-ck.js?t=' + timestamp,
            'js/plugins/underscore-min.js'
        ]
    },
    // Check for iOS
    {
        test: Modernizr.appleios,
        yep: [
            'js/plugins/ios-ck.js'
        ]
    },
    // Functional polyfills
    {
        test: Modernizr.flexbox,
        nope: ['js/polyfills/flexie.js']
    }
]);




/*
 *  ScaleText
 *  An attempt to create a custom type scaler for
 *  large type that needs to scale to fit its parent
 */
ScaleText = {

    invoke: function () {
        $(".scalable").each(function (index, element) {
            var $parent = $(element),
                $wrapper = ScaleText.wrapIt($parent.first("div"));

            $parent.css({
                "overflow": "hidden",
                "opacity": 0
            });
            $wrapper.css({
                "-webkit-transform-origin": "left top",
                "-moz-transform-origin": "left top",
                "-ms-transform-origin": "left top",
                "-o-transform-origin": "left top",
                "transform-origin": "left top"
            });
            ScaleText.checkSize($parent, $wrapper);

            jQuery(window).on("debouncedresize.ScaleText", function () {
                ScaleText.checkSize($parent, $wrapper);
            });
        });
    },

    checkSize: function ($parent, $wrapper) {
        var scrollWidth = $parent[0].scrollWidth,
            width = $parent.width(),
            scrollHeight = $parent[0].scrollHeight,
            height = $parent.height(),
            ratio, wRatio, hRatio;

        wRatio = width / scrollWidth;
        hRatio = height / scrollHeight;
        ratio = (wRatio < hRatio) ? wRatio : hRatio;

        $wrapper.css({
            "-webkit-transform": "scale(" + ratio + ")",
            "-moz-transform": "scale(" + ratio + ")",
            "-ms-transform": "scale(" + ratio + ")",
            "-o-transform": "scale(" + ratio + ")",
            "transform": "scale(" + ratio + ")"
        });
        $parent.css({
            "opacity": 1
        });
    },

    wrapIt: function (element) {
        var content = $(element).html(),
            $wrapper = $("<div>" + content + "</div>");
        $(element).empty().append($wrapper);
        return $wrapper;
    }

};

なんらかの理由で、IE8はModernizr.loadブロックを完全に窒息させていObject doesn't support this property or methodます。スクリーンショットを添付。

なぜこれが起こっているのかについての考えは?

編集

Modernizrのカスタムビルドを使用していることに言及する必要があります:http://www.hastebin.com/fitaqireha.coffee

ここに画像の説明を入力してください

4

3 に答える 3

1

私もこれを手に入れました。Modernizr.load() はオプションのようです。以下は、modernizr-2.5.3 のヘッダーからのものです。

/*     
 * Modernizr has an optional (not included) conditional resource loader
 * called Modernizr.load(), based on Yepnope.js (yepnopejs.com).
 * To get a build that includes Modernizr.load(), as well as choosing
 * which tests to include, go to www.modernizr.com/download/
 */

ここに移動して、パッケージを再度取得する必要があります。ExtraカテゴリのModernizr.loadを確認してください。そうすることで、ファイルの最後に yepnopejs が含まれます。

これが追加されたものです。既存の modernizr.*.js に貼り付けましたが、すべてが期待どおりに機能しています。

于 2013-01-11T00:38:11.567 に答える
0

IE8でも同じ「オブジェクトはこのプロパティまたはメソッドをサポートしていません」というエラーが発生しました(Chromeではありません)。

同じ Modernizr 宣言スクリプトを参照している他のページがあったため、私の問題は別の場所にあるのではないかと疑っていました。ロード ブロックに余分なコンマがあることがわかりました。

Modernizr.load([
   {
      load: [
         'path/to/something.js',,  // <--removing this extra comma resolved the issue
         'path/to/something-else.js'
      ]
   }
]);
于 2013-09-23T17:51:03.100 に答える
0

私は Visual Studio に住んでいる .NET 開発者で、一般的な'Modernizr' NuGet パッケージModernizr.load()を使用しましたが、この同じ問題に遭遇しました: (aka )が含まれていませんYepNope

関数が含まれている代替 NuGet パッケージ 'Modernizr full'を使用するように .NETter にアドバイスしたいと思いload()ます

それに加えて、フルバージョンには縮小された .js バージョンも含まれていますが、一般的なバージョンには含まれていません (ただし、VS のWeb Essentials 拡張機能を使用して縮小バージョンを自分で生成することを好みます)。

また、メインの NuGet パッケージは最新のように見えることにも注意してください (現在は Modernizr v. 2.8.3、たとえば最新) が、「Modernizr フル」は現在 2.6.2 です)。でも私にはそれで十分です。もちろん、すべての光沢のある新しいトリムが必要な場合は、受け入れられた回答の状態としてModernizr ダウンロード機能を使用する必要があります。

于 2014-12-17T13:27:30.420 に答える