如何在 jQuery 中为 HTML 元素添加属性
答案:使用jQuery attr()
方法
您可以使用 jQuery attr()
方法向 HTML 元素添加属性。
在下面的示例中,当您单击"选择复选框"按钮时,它将使用 jQuery 动态地将 checked
属性添加到复选框。
示例
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery 向 HTML 元素添加属性</title>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
$(".add-attr").click(function(){
$('input[type="checkbox"]').attr("checked", "checked");
});
});
</script>
</head>
<body>
<button type="button" class="add-attr">选择复选框</button>
<input type="checkbox">
</body>
</html>
FAQ 相关问题解答
以下是与此主题相关的更多常见问题解答: