.removeAttr()

.removeAttr( attributeName )返回类型:jQuery

描述:从匹配的元素集合的每个元素上删除一个特性。

.removeAttr()方法使用JavaScript的removeAttribute()函数,但是它具有优点,可以直接在jQuery对象上调用,它可以跨浏览器处理不同的特性名称。

注意:利用.removeAttr()删除一个内联的onclick事件处理函数,在Internet Explorer 8和Internet Explorer 9中并不能实现想要的效果。若要避免潜在的问题,请用.prop()代替:

1
2
$element.prop( "onclick", null );
console.log( "onclick property: ", $element[ 0 ].onclick );

示例:

点击按钮,改变它后面的输入框的标题。把鼠标指针移到文本输入框上,以查看添加和删除标题特性的效果。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>removeAttr demo</title>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<button>Change title</button>
<input type="text" title="hello there">
<div id="log"></div>
<script>
(function() {
var inputTitle = $( "input" ).attr( "title" );
$( "button" ).click(function() {
var input = $( this ).next();
if ( input.attr( "title" ) === inputTitle ) {
input.removeAttr( "title" )
} else {
input.attr( "title", inputTitle );
}
$( "#log" ).html( "input title is now " + input.attr( "title" ) );
});
})();
</script>
</body>
</html>

演示: