概述
一开始少写了个分号(红色的),怎么搞都不对.
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);
最后
以上就是虚幻手机为你收集整理的javascript import css实例代码的全部内容,希望文章能够帮你解决javascript import css实例代码所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复