VM暫存
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

parked.php 1.1KB

hace 8 años
123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <!DOCTYPE html>
  2. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  3. <style>
  4. body{background-color:black;font-family:Microsoft JhengHei;}
  5. table{width:100%;text-align:center;}
  6. .availables /* 空車位數 */
  7. {
  8. font-size:920px;
  9. font-family:arial;
  10. font-weight:bolder;
  11. color:gold;
  12. text-align:center;
  13. }
  14. </style>
  15. <script src="http://code.jquery.com/jquery-2.1.4.js"></script>
  16. <html>
  17. <head>
  18. <title>剩餘車位數</title>
  19. </head>
  20. <body>
  21. <table style="border:0px;" cellpadding='0' bolder="0">
  22. <tr>
  23. <td><!--marquee direction="up" scrollamount="50"--><div class="availables"><?=$init_value?></div><!--/marquee--></td>
  24. </tr>
  25. </table>
  26. </body>
  27. <script>
  28. setInterval(function()
  29. {
  30. $.ajax
  31. ({
  32. url: "http://192.168.51.15/get_group_num.php?group_id=<?=$group_id?>",
  33. type: "post",
  34. dataType:"text",
  35. data: {},
  36. success: function(jdata)
  37. {
  38. $(".availables").text(jdata);
  39. }
  40. });
  41. }, 2000);
  42. </script>
  43. </html>