javascript import css实例代码_javascript技巧
程序员文章站
2024-01-27 13:30:04
...
一开始少写了个分号(红色的),怎么搞都不对.
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);
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);
上一篇: PHP入门指导:如何学习PHP?
推荐阅读
-
javascript import css实例代码_javascript技巧
-
JS对select控件option选项的增删改查示例代码_javascript技巧
-
使用JavaScript修改浏览器URL地址栏的实现代码_javascript技巧
-
js获取url中指定参数值的示例代码_javascript技巧
-
js 判断上传文件大小及格式代码_javascript技巧
-
javascript分页代码(当前页码居中)_javascript技巧
-
javascript测试题练习代码_javascript技巧
-
神奇的代码 通杀各种网站-可随意修改复制页面内容_javascript技巧
-
无刷新预览所选择的图片示例代码_javascript技巧
-
使用JavaScript检测Firefox浏览器是否启用了Firebug的代码_javascript技巧