Body part: <button>Turn on/off light</button> Script part: <script> // window.onload is the window loading event, which can be used to write code to the element window.addEventListener('load', function () { var btn = document.querySelector('button'); // Define a variable to determine whether the light is on or off var flag = 0; btn.onclick = function () { if (flag == 0) { document.body.style.backgroundColor = 'black'; flag = 1; } else { document.body.style.backgroundColor = 'pink'; flag = 0; } } }) </script> If Then use the following code:
<script>
var btn = document.querySelector('button');
var flag = 0;
btn.onclick = function () {
if (flag == 0) {
document.body.style.backgroundColor = 'black';
flag = 1;
} else {
document.body.style.backgroundColor = 'pink';
flag = 0;
}
}
</script>
This is the end of this article about using js to implement simple light switch code. For more relevant js to implement simple light switch content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Explain the deployment and configuration of Clickhouse Docker cluster with examples
>>: Summary of a CSS code that makes the entire site gray
The table creation command requires: The name of...
Preface Recently, when I was building a project, ...
A colleague once told me to use a temporary table...
In the previous article, it was mentioned that th...
RDF and OWL are two important semantic web techno...
Element form and code display For details, please...
Pure front-end implementation:切片上傳斷點續傳.斷點續傳needs ...
As the number of visits to the company's webs...
Table of contents Early creation method Factory P...
This article is just to commemorate those CSS que...
Generate a certificate chain Use the script to ge...
1. Check whether the existing nginx supports ipv6...
With the rise of mobile terminals such as iPad, p...
Table of contents 1. Startup management of source...
Preface The most widely used database in Linux is...