JavaScript events:
Commonly used events:
Event ActionsBinding Events Method 1 : Bind through the event attribute in the tag. <body> <img id="img" src="upload/2022/web/u=1582373193,2567665585&fm=26&gp=0.jpg"> <br/> <button id="up" onclick="up()">Previous</button> <button id="down" onclick="down()">Next</button> </body> <script> // Display the first function up() { let img = document.getElementById("img"); img.setAttribute("src", "upload/2022/web/u=1582373193,2567665585&fm=26&gp=0.jpg") } // Display the second image function down() { let img = document.getElementById("img"); img.setAttribute("src", "https://gimg2.baidu.com/image_search/src=http%3A%2F%2Fpic4.58cdn.com.cn%2Fp1%2Fbig%2Fn_v26f22be8b05a74c42b8f9dfb859480186.jpg%3Fw%3D425%26h%3D320&refer=http%3A%2F%2Fpic4.58cdn.com.cn&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=jpeg?sec=1618451421&t=0310ddbd6f7cd840299b10dd314572c8") } </script> Method 2 : Binding through DOM element attributes. <body> <img id="img" src="upload/2022/web/u=1582373193,2567665585&fm=26&gp=0.jpg"> <br/> <button id="up">Previous</button> <button id="down">Next</button> </body> <script> // Display the first function up() { let img = document.getElementById("img"); img.setAttribute("src", "upload/2022/web/u=1582373193,2567665585&fm=26&gp=0.jpg") } let s = document.getElementById("up"); s.onclick = up; // Display the second image function down() { let img = document.getElementById("img"); img.setAttribute("src", "https://gimg2.baidu.com/image_search/src=http%3A%2F%2Fpic4.58cdn.com.cn%2Fp1%2Fbig%2Fn_v26f22be8b05a74c42b8f9dfb859480186.jpg%3Fw%3D425%26h%3D320&refer=http%3A%2F%2Fpic4.58cdn.com.cn&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=jpeg?sec=1618451421&t=0310ddbd6f7cd840299b10dd314572c8") } let x = document.getElementById("down"); x.onclick = down; </script> SummarizeThis article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM! You may also be interested in:
|
<<: Solution to inconsistent display of cursor size in input box
>>: How to package the docker image, push it to the remote server and deploy it to k8s
As usual, let’s first post the picture effect: Th...
Therefore, we made a selection of 30 combinations ...
Table of contents 1. Draw a circle 2. Circle move...
Docker container connection 1. Network port mappi...
This article example shares the specific code for...
Table of contents Hidden Problems Solution to ada...
<tr> <th width="12%">AAAAA&l...
There are many differences between IE6 and IE7 in ...
<br />The most common mistake made by many w...
How to modify the style of the el-select componen...
Starting from this article, a new series of artic...
Table of contents 1. We found that this website m...
Many times, after we install a web service applic...
question Nginx takes $remote_addr as the real IP ...
Table of contents 1. React Basic Usage Notable Fe...