<html xmlns="http://www.w3.org/1999/xhtml" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>setTimout_SetInterval</title> </head> <script type="text/javascript"> function helloWorld() { alert("helloWorld"); } window.setTimeout(helloWorld, 5000); </script> <body> </body> </html> |
<html xmlns="http://www.w3.org/1999/xhtml" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>setTimout_SetInterval</title> </head> <script type="text/javascript"> function helloWorld() { alert("helloWorld"); } // window.setTimeout(helloWorld, 5000); var hw = window.setTimeout(helloWorld, 5000); document.onclick = function() { alert("取消helloWorld()"); window.clearTimeout(hw); } </script> <body> </body> </html> |
<html xmlns="http://www.w3.org/1999/xhtml" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>setTimout_SetInterval</title> </head> <script type="text/javascript"> function helloWorld() { alert("helloWorld"); } window.setInterval(helloWorld, 3000); </script> <body> </body> </html> |
<html xmlns="http://www.w3.org/1999/xhtml" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>setTimout_SetInterval</title> </head> <script type="text/javascript"> function helloWorld() { alert("helloWorld"); } //window.setInterval(helloWorld, 3000); var hw = window.setInterval(helloWorld, 1000); document.onclick = function() { alert("取消helloWorld()"); window.clearTimeout(hw); } </script> <body> </body> </html> |
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) | 黑马程序员IT技术论坛 X3.2 |