12345678910111213141516171819 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>demo</title>
- </head>
- <body>
- <p>Demo</p>
- <p> <input type="button" value="WebSocket实时通讯案例" onclick="toWebSocketEvent()" /> </p>
- <script>
- function toWebSocketEvent() {
- window.location.href = 'WebSocket/main.html';
- }
- </script>
- </body>
- </html>
|