index.html 449 B

12345678910111213141516171819
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>demo</title>
  7. </head>
  8. <body>
  9. <p>Demo</p>
  10. <p> <input type="button" value="WebSocket实时通讯案例" onclick="toWebSocketEvent()" /> </p>
  11. <script>
  12. function toWebSocketEvent() {
  13. window.location.href = 'WebSocket/main.html';
  14. }
  15. </script>
  16. </body>
  17. </html>