素材巴巴 > 程序开发 >

html删除style中样式表,如何移除css样式?

程序开发 2023-09-11 16:09:01

在HTML网页中我们可以使用jQuery来移除css样式,在实际工作中我们经常需要使用Javascript来改变页面元素的样式。

9408f52e03d6c56b209c43e3030138ee.png

使用jQuery来移除css样式的方法:

1、移除全部样式使用removeattr(“style”);

removeAttr() 方法从被选元素中移除属性。

语法:$(selector).removeAttr(attribute)

2、移除单个样式使用css(“属性”,“”);

css() 方法设置或返回被选元素的一个或多个样式属性。

如需设置指定的 CSS 属性,请使用如下语法:css("propertyname","value");

示例:

$(function(){

$("li").mouseover(function(){

//添加css样式

$(this).css("background","#ffdd00");

});

$("li").mouseout(function(){

//移出css样式

$(this).css("background","");

});

});


标签:

上一篇: Web前端饱和性分析! 下一篇:
素材巴巴 Copyright © 2013-2021 http://www.sucaibaba.com/. Some Rights Reserved. 备案号:备案中。