检查浏览器是否支持styleSheets对象

监测浏览器是否支持该对象

  
  
  
  
  1. <html> 
  2. <head> 
  3. <title>无标题文档</title> 
  4. <script type="text/javascript"> 
  5. function initstlechange() 
  6.     if(document.styleSheets)  
  7.     alert("ff"); 
  8.     //return;    
  9. else 
  10.     alert("dd"); 
  11.     } 
  12. </script> 
  13. </head> 
  14.  
  15. <body> 
  16. <input type="button" onclick="initstlechange()"/> 
  17. </body> 
  18. </html> 

 

你可能感兴趣的:(浏览器,职场,title,检查,休闲)