返回值:jQueryremoveAttr(attributeName)
从每个匹配的元素中移除指定的 attribute 属性。
-
1.0 新增removeAttr(attributeName)
attributeName (String) 将要移除的属性名; 从 jQuery 1.7 开始, 可以指定多个属性名,属性名之间用空格分隔。
.removeAttr()
方法使用了 JavaScript 的 removeAttribute()
函数。可以直接在一个 jQuery 对象上调用该方法,并且它解决了跨浏览器的属性名不同的问题。(原文如下: it accounts for different attribute naming across browsers.)
注意: 在 IE 6, 7 和 IE 8 中,无法使用 .removeAttr()
来移除 onclick
事件。为了避免潜在的问题,请使用 .prop()
方法来替代:
$element.prop("onclick", null); console.log("onclick property: ", $element[0].onclick);
示例:
点击按钮,添加或删除按钮后面 input 元素的 title 属性。
<!DOCTYPE html>
<html>
<head>
<script src="jquery.min.js"></script>
</head>
<body>
<button>Enable</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>