브라우저에서 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> 

좋은 웹페이지 즐겨찾기