Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <script src="http://code.jquery.com/jquery-latest.js"></script>
- </head>
- <body>
- <h1 id="clock">My First JavaScript</h1>
- <button id="start">시작</button>
- <button id="stop">중지</button>
- <script>
- var timer = null;
- $(function(){
- $("#start").click(function(){
- if( timer == null ) {
- timer = setInterval(function(){
- $("#clock").html(Date());
- },1000);
- }
- });
- $("#stop").click(function(){
- if( timer != null ) {
- clearInterval(timer);
- timer = null;
- }
- });
- });
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment