123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <!doctype html>
- <html>
- <head>
- <title>WebSocket Protobuf 调试</title>
- <script src="http://pub.dwstatic.com/common/js/jquery.js"></script>
- <style>
- button {
- width: 200px;
- line-height: 40px;
- }
- </style>
- </head>
- <body>
- <div style="width: 400px;text-align:center;margin:100px auto;">
- <p>
- <button onClick="broadNotice()">发送消息通知</button>
- </p>
- <p>
- <button onClick="broadFriends()">发送好友列表更新通知</button>
- </p>
- <p>
- <button onClick="broadArtists()">发送艺人列表更新通知</button>
- </p>
- </div>
- </body>
- <script>
- function broadNotice() {
- $.get("/broadNotice")
- }
- function broadFriends() {
- $.get("/broadFriends")
- }
- function broadArtists() {
- $.get("/broadArtists")
- }
- </script>
- </html>
|