标签:
Base.prototype.addRule = function (num, selectorText, cssText, position) { var sheet = document.styleSheets[num]; if (typeof sheet.insertRule != ‘undefined‘) { sheet.insertRule(selectorText + "{" + cssText + "}", position); } else if (typeof sheet.addRule != ‘undefined‘) { sheet.addRule(selectorText, cssText, position); } }; //移除link 或style 中的CSS 规则 Base.prototype.removeRule = function (num, index) { var sheet = document.styleSheets[num]; if (typeof sheet.deleteRule != ‘undefined‘) { sheet.deleteRule(index); } else if (typeof sheet.removeRule) { sheet.removeRule(index); } return this; };
标签:
原文地址:http://www.cnblogs.com/fangxuele/p/5429101.html