gps.html 900 B

123456789101112131415161718192021222324252627282930313233
  1. <!DOCTYPE html>
  2. <html lang="zh-cmn-Hans">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width,initial-scale=1.0">
  7. <title>当前位置</title>
  8. </head>
  9. <style>
  10. body {
  11. width: 100%;
  12. height: 100vh;
  13. }
  14. </style>
  15. <body>
  16. <iframe
  17. frameborder="0"
  18. id="locationIframe"
  19. width="100%"
  20. height="100%"
  21. src="http://openapi.18gps.net/RouterPass.ashx?method=Playback&macid=17018458028&mapType=QQ&mds=320ed22d30df445283e10bcf40221f38&url=http://www.18gps.net/" ></iframe>
  22. </body>
  23. <script>
  24. // function load() {
  25. // const iframe = document.createElement("locationIframe");
  26. // iframe.contentWindow.postMessage("当前位置", "http://localhost");
  27. // window.onmessage = e => {
  28. // console.log(e.data);
  29. // };
  30. // }
  31. </script>
  32. </html>