jquery removeattr()方法入门教程

发布时间:2019-12-13编辑:脚本学堂
jquery removeattr()方法的用法,介绍了removeattr()方法的语法结构、参数列表,以及匹配元素中移除相应属性的例子,一起来学习下。

jquery中removeattr()方法用法

此方法从匹配元素中移除相应的属性。

语法结构:
 

$(selector).removeAttr(attribute)

参数列表:
参数 描述
attribute 定义要从匹配元素中移除的属性

例子:
 

复制代码 代码示例:
<!doctype html>
<html>
<head>
<meta charset=" utf-8">
<title>plc学堂 - www.plcxue.com</title>
<style type="text/css">
div{
height:200px;
width:200px;
border:1px solid blue
}
.reset{
font-size:20px;
color:green;
}
</style>
<script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#btn").click(function(){
$("div").removeAttr("class");
})
})
</script>
</head>
<body>
<div class="reset">plc学堂 - www.plcxue.com欢迎您</div>
<button id="btn">点击查看效果</button>
点击按钮删除或移除class属性。</body>
</html>