用JavaScript动态建立或增加CSS样式表的实现方法
1、简单的方法,不管不顾,直接这样就可以:
document.createStyleSheet().cssText = '标签{color:red;' + // 这个注释只在当前JS中帮助理解,并不会写入CSS中 'width:300px;height:150px}' + '.类名{……}' + '#ID们{……}' ;
//完活。我喜欢分号这样写,和指令书写的起始位置对齐比较好一点,尤其是后面有其它语句的时候。
2、完善一点的方法,防止重复添加,可以通过添加样式表ID并对其判断来实现:
if (!document.styleSheets['要建立的样式表ID如theforever']) { //先检查要建立的样式表ID是否存在,防止重复添加 var ss = document.createStyleSheet(); ss.owningElement.id = '要建立的样式表ID如theforever'; ss.cssText = '标签{display:inline-block;overflow:hidden;' + // 这个注释只在当前JS中帮助理解,并不会写入CSS中 'text-align:left;width:300px;height:150px}' + '.类名{……}' + '#ID们{……}' ; }
相关推荐
qiupu 2020-11-04
多读书读好书 2020-11-03
RedCode 2020-10-28
jiedinghui 2020-10-25
Ladyseven 2020-10-22
hellowzm 2020-10-12
zuncle 2020-09-28
Ladyseven 2020-09-11
jiedinghui 2020-09-07
xiaohuli 2020-09-02
葉無聞 2020-09-01
impress 2020-08-26
ThikHome 2020-08-24
nicepainkiller 2020-08-20
hellowzm 2020-08-18