HTML if statement to load local JS/CSS upon CDN failure

前端 未结 2 1036
甜味超标
甜味超标 2021-02-09 05:45

When loading a CSS/JS file from CDN or any external server, it is possible (even with low probability) to miss the file due to external failure. In this case, the html page will

2条回答
  •  说谎
    说谎 (楼主)
    2021-02-09 06:10

    I would do it this way.

    Create a class within your stylesheet ui-helper-hidden and then add a div as the first element on your page;

    After you have checked to make sure your CDN javascript file has been loaded, then use this bit of code note i am using jquery

    
    

    This will check to see if the element which should be hidden is or not. If it isnt hidden, then you know your css file has not loaded from the CDN.

    I use this method for jQuery and jQuery UI via a CDN

提交回复
热议问题