首頁  >  文章  >  web前端  >  javascript import css实例代码_javascript技巧

javascript import css实例代码_javascript技巧

WBOY
WBOY原創
2016-05-16 19:02:501034瀏覽

一开始少写了个分号(红色的),怎么搞都不对. 

var style = document.createElement("STYLE");
 document.body.appendChild(style);
 style.onerror = function(){
  alert("here1")
 }
 style.onreadystatechange = function(){
  alert("here2");
 }
var sheet = style.styleSheet || style.sheet;

if(sheet.addImport)
 sheet.addImport("aa.css"); 
else 
 sheet.insertRule("@import url('aa.css');",sheet.cssRules.length);

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn