最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
rules与cssRules区别(ie与firefox)
时间:2022-06-25 11:10:42 编辑:袖梨 来源:一聚教程网
function addcssrule(css,key,value){
//var css = document.stylesheets[document.stylesheets.length-1];
if(navigator.useragent.indexof("firefox")>0 )
{
css.insertrule(key+"{"+value+"}", css.cssrules.length)
}
else
{
css.addrules(key,value);
}
}
function removecssrule(key){
for(var i = 0; i < document.stylesheets.length; i++){
var css = document.stylesheets[i];
navigator.useragent.indexof("firefox")>0 ?
(function(){
for(var j = 0; j < css.cssrules.length; j++){
if(css.cssrules[j].selectortext==key){
css.deleterule(j);
}
}
})() :
(css.removerule(key)) ;
}
}
相关文章
- TRON是什么币 05-02
- 2025年比特币走势 05-02
- Binance.US已上线VIRTUAL 04-30
- binance官网电脑下载_binance苹果版下载地址V2.57.7 04-30
- 比特币交易量最大的交易所是哪个?全球最大的比特币交易平台排名 04-30
- 奥比岛梦想国度卡死闪退有哪些解决方法 04-30