码迷,mamicode.com
首页 > Web开发 > 详细

js操作styleSheets

时间:2016-04-25 06:35:51      阅读:278      评论:0      收藏:0      [点我收藏+]

标签:

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;
};

 

js操作styleSheets

标签:

原文地址:http://www.cnblogs.com/fangxuele/p/5429101.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!