dom-ready.html 245 B

123456789
  1. <html>
  2. <body>
  3. <script type="text/javascript" charset="utf-8">
  4. const url = new URL(location.href);
  5. const port = url.searchParams.get('port');
  6. document.write("<img src='http://127.0.0.1:" + port + "/logo.png' />");
  7. </script>
  8. </body>
  9. </html>