如何使用 jQuery 获取类名
答案:使用jQuery attr()
方法
您可以简单地使用 attr()
方法来使用 jQuery 获取或检索元素的类名。
让我们试试下面的例子来了解它的基本工作原理:
示例
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery 获取元素的类名</title>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
var className = $("#test").attr("class");
alert(className); /* Outputs: hint */
});
});
</script>
</head>
<body>
<div id="test" class="hint">Click the following button to get the class name of this div element.</div>
<button type="button">Get Class Name</button>
</body>
</html>
同样,如果您想获取元素的 ID 名称,可以使用 attr("id")
方法。
FAQ 相关问题解答
以下是与此主题相关的更多常见问题解答: