jQuery CSS 操作jQuery 拥有三种用于 CSS 操作的重要函数:$(selector).css(name,value)$(selector).css({properties})$(selector).css(name) 函数 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语法来控制div的css属性,例如:$("div1").css("cssText", "height:50px!important") 这种格式,‘50px‘ 和 ‘!important‘不要有空格,不过这个会覆盖之前的css属性。
时间: 2024-09-30 19:01:13