山海科技发展网

09月26日科技常识:js和jquery设置css样式的几种方法

导读 摘要 今天小编跟大家讲解下有关js和jquery设置css样式的几种方法 ,相信小伙伴们对这个话题应该有所关注吧,小编也收集到了有关js和jquer...
摘要 今天小编跟大家讲解下有关js和jquery设置css样式的几种方法 ,相信小伙伴们对这个话题应该有所关注吧,小编也收集到了有关js和jquery设置c

今天小编跟大家讲解下有关js和jquery设置css样式的几种方法 ,相信小伙伴们对这个话题应该有所关注吧,小编也收集到了有关js和jquery设置css样式的几种方法 的相关资料,希望小伙伴们看了有所帮助。

一、js设置样式的方法

1. 直接设置style的属性 某些情况用这个设置 !important值无效

element.style.height = '50px';

2. 直接设置属性(只能用于某些属性 相关样式会自动识别)

element.setAttribute('height',50); element.setAttribute('height',50px');

3. 设置style的属性

element.setAttribute('style', 'height: 100px !important');

4. 使用setProperty如果要设置!important 推荐用这种方法设置第三个参数

element.style.setProperty('height', '300px', 'important');

5. 改变class 比如JQ的更改class相关方法

因js获取不到css的伪元素 所以可以通过改变伪元素父级的class来动态更改伪元素的样式

element.className = 'blue';element.className += 'blue fb';

6. 设置cssText

element.style.cssText = 'height: 100px !important';element.style.cssText += 'height: 100px !important';二、jquery设置样式的几种方法

1、设置所有匹配元素的指定 css 属性 不支持属性名称简写(如border和background)

$(selector).css(name,value)

2、使用函数来设置 css 属性

$(selector).css(name,function(index,value))$("button").click(function(){   $("p").css("color",function(){return "red";}); });

name:必需。规定 css 属性的名称。该参数可包含任何 CSS 属性 比如 "color";function(index,value):规定返回 CSS 属性新值的函数。index - 可选。接受选择器的 index 位置;value - 可选。接受 CSS 属性的当前值

3、设置多个 CSS 属性/值对

$(selector).css({property:value, property:value, ...})$("p").css({"color":"white","background-color":"#98bf21", "font-family":"Arial", "font-size":"20px","padding":"5px"});

来源:爱蒂网