xxxxxxxxxx
34
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="utf-8" />
<style>
.red {
background-color: red;
}
</style>
<script>
window.onload = () => {
const btn = document.getElementById("btn");
btn.onclick = onButtonPress;
}
function onButtonPress() {
const body = document.querySelector("body");
if (body.classList.contains("red")) {
body.classList.remove("red");
} else {
body.classList.add("red");
}
}
</script>
</head>
<body>
<button id="btn">
Click me
</button>
</body>
</html>