2021-05-14 15:49:56 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<style>
|
|
|
|
.democlass {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1 class="democlass">Hello World</h1>
|
|
|
|
<p>Click the button to display the value of the class attribute node of the h1 element.</p>
|
|
|
|
<button onclick="myFunction()">Try it</button>
|
|
|
|
<p id="demo"></p>
|
|
|
|
<script>
|
|
|
|
function myFunction() {
|
|
|
|
var elmnt = document.getElementsByTagName("H1")[0];
|
|
|
|
var attr = elmnt.getAttributeNode("class").value;
|
2021-11-10 12:05:35 -05:00
|
|
|
window.alert(attr);
|
2021-05-14 15:49:56 -04:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|