JS和jquery操作css样式实例分析
程序员文章站
2022-07-01 22:30:01
在写js的时候经常弄混掉js和jquery对样式操作的方法,这里总结一下:
js方法:
1.直接设置style属性,设置 !important值无效,如果属性值有 “ - ”...
在写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属性
$('p').css('height','30px')
$("p").css({fontsize:"30px",color:"red"})
2.使用attr方法
$('p').attr('height','30px')
还有些是增减类名的方法就不再这里说了,这里说的主要是直接可以设置css样式。
下一篇: 如何做奶油蛋糕