index.html 665 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <title>
  5. Static File Index.HTML
  6. </title>
  7. <script src='https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.2.0/socket.io.js'></script>
  8. </head>
  9. <body>
  10. <input id="nick" type="text" >
  11. <input id="message" type="text" >
  12. <!-- <input id="send" type="button" >
  13. -->
  14. <button id="send">send</button>
  15. <div id='formContainer'>
  16. </div>
  17. <script>
  18. const socket = io('http://192.168.1.20:5000/')
  19. // socket.emit
  20. send.onclick=() =>{
  21. console.log(nick.value+' '+ message.value)
  22. }
  23. </script>
  24. </body>
  25. </html>