1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| <!DOCTYPE html>
| <html lang="en">
| <head>
| <meta charset="UTF-8">
| <title>Document</title>
|
| </head>
| <body style="position: relative;">
| <iframe id="iframe1" src="./iframe.html " frameborder="0" width="1200" height="800px" style="border: 1px solid #ccc;top:50px;left: 50px;position:absolute;"></iframe>
| <!-- <iframe id="iframe1" src="./iframe.html " frameborder="0" width="1000" height="800" style="border: 1px solid #ccc;top:0;left: 0;position:absolute;"></iframe> -->
|
| </body>
| <script>
|
| let timer = setInterval(function(){
| if(window.$ws){
| document.title += "-" + window.$ws.userCode;
| clearInterval(timer);
| }
| },50)
|
| </script>
| </html>
|
|