请知悉:本文最近一次更新为 11年 前,文中内容可能已经过时。

jQuery CSS 操作

jQuery 拥有三种用于 CSS 操作的重要函数:

  • $(selector).css(name,value)
  • $(selector).css({properties})
  • $(selector).css(name)

CSS 操作实例

函数 css(name,value) 为所有匹配元素的给定 CSS 属性设置值:

$(selector).css(name,value)
$("p").css("background-color","red");

函数 css({properties}) 同时为所有匹配元素的一系列 CSS 属性设置值:

$(selector).css({properties})
$("p").css({"background-color":"red","font-size":"200%"});

函数 css(name) 返回指定的 CSS 属性的值:

$(selector).css(name)
$(this).css("background-color");

jQuery Size 操作

jQuery 拥有两种用于尺寸操作的重要函数:

  • $(selector).height(value)
  • $(selector).width(value)

Size 操作实例

函数 height(value) 设置所有匹配元素的高度:

$(selector).height(value)
$("#id100").height("200px");

函数 width(value) 设置所有匹配元素的宽度:

$(selector).width(value)
$("#id200").width("300px");

jQuery CSS 函数

CSS 属性描述
$(selector).css(name,value)为匹配元素设置样式属性的值
$(selector).css({properties})为匹配元素设置多个样式属性
$(selector).css(name)获得第一个匹配元素的样式属性值
$(selector).height(value)设置匹配元素的高度
$(selector).width(value)设置匹配元素的宽度

参考网址:https://www.w3school.com.cn/jQuery/jQuery_css.asp


如您从本文得到了有价值的信息或帮助,请考虑扫描文末二维码捐赠和鼓励。

尊重他人劳动成果。转载请务必附上原文链接,我将感激不尽。


与《jQuery-css函数》相关的博文:


留言

avatar
😀
😀😁😂😅😭🤭😋😘🤔😰😱🤪💪👍👎🤝🌹👌