The example of this article is about the method of automatically closing the div-layer prompt box with JS implementation timing. Share to everyone for your reference. The specific analysis is as follows:
Here with the JS set time to control the specified ID of the div layer is displayed, you can implement an automatic shutdown of the prompt box, time, immediately close, this will make your Web page more human, the code is actually more simple than you think, on a line of code.
?
1 2 3 4 5 6 7 |
<title> Auto-close div layer </title> <body onload=settimeout ("abc.style.display= ' None '", 5000) > <div id= " ABC "style=" background:yellow;padding:20px; Position:absolute; left:92px; top:38px; width:200px; height:169px; Z-index:1 "> Tips: This layer will disappear after 5 seconds!" </div> |
I hope this article will help you with your JavaScript programming.