1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <!DOCTYPE HTML>
- <html>
- <head>
-
- <title>
- Static File Index.HTML
- </title>
- <script src='https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.2.0/socket.io.js'></script>
- </head>
- <body>
- <div id='formContainer'>
- </div>
- <div id="container"></div>
- <input type="text" id="first" value="nick">
- <input type="text" id="second" value="message">
- <input type="button" value="send" id="button">
- <script>
- const socket = io("http://socketchat.ed.asmer.org.ua/")
- socket.on('msg', msg => console.log(msg))
- const div = document.createElement("div")
- div.innerHTML = `<strong>${first.value}</strong>: ${second.value}`
- container.append(div)
- button.onclick = () => {
- console.log( ` ${first.value}: ${second.value} `)
- }
- socket.emit('msg', {first:first.value, second:second.value})
- </script>
-
- <script>
-
- </script>
- </body>
- </html>
|