Using js to implement simple switch light code

Using js to implement simple switch light code

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 script is written directly below button ,

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:
  • js to achieve the effect of switching lights
  • Example of switching light bulb click toggle special effects implemented by JavaScript
  • JS/jQuery to achieve a simple switch light effect [Case]

<<:  Explain the deployment and configuration of Clickhouse Docker cluster with examples

>>:  Summary of a CSS code that makes the entire site gray

Recommend

Detailed example of creating and deleting tables in MySQL

The table creation command requires: The name of...

Simple encapsulation of axios and example code for use

Preface Recently, when I was building a project, ...

The easiest way to debug stored procedures in Mysql

A colleague once told me to use a temporary table...

mysqldump parameters you may not know

In the previous article, it was mentioned that th...

W3C Tutorial (14): W3C RDF and OWL Activities

RDF and OWL are two important semantic web techno...

Notes on element's form components

Element form and code display For details, please...

Vue+element+oss realizes front-end fragment upload and breakpoint resume

Pure front-end implementation:切片上傳斷點續傳.斷點續傳needs ...

MySQL 4G memory server configuration optimization

As the number of visits to the company's webs...

Some CSS questions you may be asked during an interview

This article is just to commemorate those CSS que...

How to configure two-way certificate verification on nginx proxy server

Generate a certificate chain Use the script to ge...

How to configure Nginx to support ipv6 under Linux system

1. Check whether the existing nginx supports ipv6...

How to match the size of text in web design: small text, big experience

With the rise of mobile terminals such as iPad, p...

Service management of source package installation under Linux

Table of contents 1. Startup management of source...

Detailed steps to install MySql 5.7.21 in Linux

Preface The most widely used database in Linux is...