index.html 905 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>WebSocket Protobuf 调试</title>
  5. <script src="http://pub.dwstatic.com/common/js/jquery.js"></script>
  6. <style>
  7. button {
  8. width: 200px;
  9. line-height: 40px;
  10. }
  11. </style>
  12. </head>
  13. <body>
  14. <div style="width: 400px;text-align:center;margin:100px auto;">
  15. <p>
  16. <button onClick="broadNotice()">发送消息通知</button>
  17. </p>
  18. <p>
  19. <button onClick="broadFriends()">发送好友列表更新通知</button>
  20. </p>
  21. <p>
  22. <button onClick="broadArtists()">发送艺人列表更新通知</button>
  23. </p>
  24. </div>
  25. </body>
  26. <script>
  27. function broadNotice() {
  28. $.get("/broadNotice")
  29. }
  30. function broadFriends() {
  31. $.get("/broadFriends")
  32. }
  33. function broadArtists() {
  34. $.get("/broadArtists")
  35. }
  36. </script>
  37. </html>