JS和jquery操作css样式

在写js的时候经常弄混掉js和jquery对样式操作的方法,这里总结一下:
JS方法:
1. 直接设置style属性,设置 !important值无效,如果属性值有 “ - ”改成小驼峰写法(textAlign)或者 element.style['text-align']= '100px'
e. style.height= '100px' //需要带上单位
2. 直接设置属性
e. setAttribute('height',100); == e. setAttribute('height','100px');
3. 设置style的属性
e. setAttribute('style', 'height:100px !important')
4. 使用setProperty   如果要设置!important,推荐用这种方法设置第三个参数
e.style.setAttribute('height', '100px', '!important')
5.设置cssText
e.style.cssText = 'height: 100px !impotant';
e.style.cssText += 'height:100px !important'
jQuery方法:
1. 设置css属性
$('div').css('height','30px')
$("div").css({fontSize:"30px",color:"red"})
2. 使用attr方法
$('div').attr('height','30px')

还有些是增减类名的方法就不再这里说了,这里说的主要是直接可以设置css样式。

你可能感兴趣的:(JS和jquery操作css样式)