📅  最后修改于: 2023-12-03 14:43:11.367000             🧑  作者: Mango
jQuery removeAttr() 方法用于移除 HTML 元素的属性。
$(selector).removeAttr(attribute)
参数 | 描述 ---|--- selector | 必需。用于确定要移除属性的 HTML 元素。 attribute | 必需。属性名。
无
以下实例演示了如何使用 removeAttr() 方法来移除按钮的disabled属性:
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("input").removeAttr("disabled");
});
});
</script>
</head>
<body>
<p>点击下面的按钮,移除 "disabled" 属性:</p>
<form>
<input type="text" disabled="disabled"><br><br>
<button>移除属性</button>
</form>
</body>
</html>
输出:
此方法可以移除指定 HTML 元素的属性。如果该属性不存在,方法不会执行操作。