123456789101112131415161718192021222324252627282930313233343536 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title></title>
- <script src="./js/socket.io.min.js"></script>
- </head>
- <body>
- <script>
- var socket = io("http://127.0.0.1:10010", {
- transports:['websocket'],
- path: "/im-rtc",
- query: {
- userName:'张三'
- },
- })
- socket.on('connect',function(){
- setInterval(() => {
- socket.emit('muted',true,"213132")
- }, 3000);
-
- })
- socket.on('join',function(data){
- console.log(location.hash)
- location.hash.substr()
- })
- socket.on('muted',function(){
- console.log(arguments)
- })
-
- </script>
- </body>
- </html>
|