Advertisement
01663800600

Untitled

Apr 23rd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <a href="home.php"></a>
  6. <title>Untitled Document</title>
  7. </head>
  8.  
  9. <div class="container">
  10. <h2>Freetuts.net hướng dẫn tạo Toggle ẩn/hiện nội dung</h2>
  11. <div id="dongho"></div>
  12. <script>
  13. var so = 5 ;
  14. function demnguoc(){
  15. so--;
  16. if(so != 0){
  17. document.getElementById("dongho").innerHTML = so;
  18. setTimeout(demnguoc,1000)
  19. }else{
  20. document.forms[0].submit()
  21. }
  22. }
  23. demnguoc();
  24. </script>
  25.  
  26. <?php
  27. if(isset($_POST['aab'])){
  28. echo 'xong';
  29. }
  30. ?>
  31. <form action="" method="post" name="acc">
  32. <input type="text" value="đawdad">
  33. <input type="text" value="đawdad">
  34. <input type="text" value="đawdad">
  35. <input type="submit" name="aab">
  36. </form>
  37. </div>
  38. </body>
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement