12345678910 |
- <html>
- <body>
- <script type="text/javascript" charset="utf-8">
- window.addEventListener('unload', function (e) {
- require('node:fs').writeFileSync(__dirname + '/close', 'close');
- }, false);
- window.onload = () => window.close();
- </script>
- </body>
- </html>
|