jQuery removeAttr() 方法
实例
从所有 <p> 元素中删除 style 属性:
<!DOCTYPE html>
<html>
<head>
<script src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("p").removeAttr("style");
});
});
</script>
</head>
<body>
<h2>这是一个标题</h2>
<p style="font-size:120%;color:red">这是一个段落</p>
<p style="font-weight:bold;color:blue">这是另一个段落</p>
<button>从所有 p 元素中删除 style 属性</button>
</body>
</html>
定义与用法
removeAttr()
方法从选定元素中删除一个或多个属性。
语法
$(selector).removeAttr(attribute)
参数 | 描述 |
---|---|
attribute | 必填。指定要删除的一个或多个属性。若要删除多个属性,请用空格分隔属性名称 |