jq判断css是否存在的方法:首先打开相应的代码文件;然后通过ajax请求css资源文件;最后根据http状态码来进行判断即可,其代码如“$(“#btn”).click(function(){…}”。
jquery判断css文件是否存在
主要使用了ajax,通过请求css资源文件,根据http状态码来进行判断。状态码为200则存在,为404则不存在。
- <button id=“btn”>检测</button>
- <script src=“https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js”></script>
- <script>
- $(“#btn”).click(function(){
- $.ajax({
- url: ‘./main.css’,
- type: ‘GET’,
- complete: function(response){
- if(response.status == 200){
- alert(‘有效’);
- }else{
- alert(‘无效’);
- }
- }
- });
- });
- </script>