本文我們主要和大家分享div顯示2秒後自動消失js程式碼,利用setTimeout(),setTimeout()方法用來在指定的毫秒數後呼叫函數或計算表達式。希望能幫助大家。
在做四象限的過程中會有提示的訊息,但是想讓提示訊息在一定的時間後自動隱藏。
如上圖,2s後提示自動隱藏,怎麼做呢?
setTimeout(code,millisec)
setTimeout() 只執行 code 一次。如果要多次調用,請使用 setInterval() 或讓 code 本身再次調用 setTimeout()。
<html> <head> <script type="text/javascript"> function timedMsg() { var t=setTimeout("alert('5 seconds!')",5000) } </script> </head> <body> <form> <input type="button" value="Display timed alertbox!" onClick="timedMsg()"> </form> <p>Click on the button above. An alert box will be displayed after 5 seconds.</p> </body> </html>
相關推薦:
以上是div顯示2秒後自動消失js程式碼分享的詳細內容。更多資訊請關注PHP中文網其他相關文章!