The method for jq to determine whether css exists: first open the corresponding code file; then request the css resource file through ajax; finally, judge based on the http status code, the code is such as "$("#btn" ).click(function(){...}".
The operating environment of this tutorial: windows7 system, jquery1.12.0 version, this method is applicable to all Brand computer.
Recommended: "jquery video tutorial"
jquery determines whether the css file exists
mainly uses ajax , by requesting the css resource file and judging based on the http status code. If the status code is 200, it exists, if it is 404, it does not exist.
<button id="btn">检测</button> <script src="http://www.lingchenliang.com/download/jquery-1.12.0.min.js"></script> <script> $("#btn").click(function(){ $.ajax({ url: './main.css', type: 'GET', complete: function(response){ if(response.status == 200){ alert('有效'); }else{ alert('无效'); } } }); }); </script>
The above is the detailed content of How does jq determine whether css exists?. For more information, please follow other related articles on the PHP Chinese website!