1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
<!DOCTYPE html>
<html>
<head>
<style>
.democlass {
color: red;
}
</style>
</head>
<body>
<h1>Hello World</h1>
<p>Click the button to add a class attribute with the value of "democlass" to the h1 element.</p>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction() {
var before = document.getElementsByTagName("H1")[0].outerHTML;
console.assert(before === '<h1>Hello World</h1>', 'H1');
document.getElementsByTagName("H1")[0].setAttribute("class", "democlass");
var after = document.getElementsByTagName("H1")[0].outerHTML;
console.assert(after === '<h1 class="democlass">Hello World</h1>', 'H1 with class');
}
console.error("element.setAttribute.html");
myFunction();
console.exit();
</script>
</body>
</html>
|