web-dev-qa-db-ja.com

MomentjsがCDNからロードされているかどうかを検出する方法

モーメントjsがCDNからロードされない場合にフォールバックを作成したいと思います。オンラインでも、Moment jsが存在するかどうかを検出するための momentjs.com でも、役立つリソースは見つかりませんでした。

これが私のコードです:

<script src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.3/moment.min.js"></script>
<script>
    // If moment.js is not loaded, use the fallback
    if () { 
        document.write('<script src="assets/plugins/moment/moment.min.js"><\/script>');
    }
</script>
10
Garric15

モーメントは、ロード時にwindowにアタッチされるため、次のことができます。

<script src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.3/moment.js"></script>
<script>
    if (!window.moment) { 
        document.write('<script src="assets/plugins/moment/moment.min.js"><\/script>');
    }
</script>
13
iamalismith

私はこれを見つけたワンライナーを書くことを好みます answer

<script src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.3/moment.js"></script>
<script>window.moment || document.write('\x3Cscript src="assets/plugins/moment/moment.min.js" type="text/javascript">\x3C/script>')</script>
0
Abdul Hameed