通过javascript设置CSS辅助类

var css = {};
css.util = {
	setStyle : function(el, prop, val) {
		document.getElementById(el[i]).style[prop] = val
	},
	setCss : function(el, style) {
		for ( var prop in style) {
			if (!style.hasOwnProperty(prop))
				continue;
			css.util.setStyle(el, prop, style[prop]);
		}
	}
}

你可能感兴趣的:(JavaScript)