index.html 468 B

123456789101112131415161718192021222324252627
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>Page Sandbox Demo</title>
  5. <meta charset="utf-8">
  6. <base target="_blank">
  7. <style>
  8. #txtURL {
  9. width: 300px;
  10. }
  11. </style>
  12. </head>
  13. <body>
  14. <h1>网页沙盒</h1>
  15. <div>
  16. URL:
  17. <input id="txtURL" value="https://www.google.com.hk">
  18. <button id="btnGo">Go</button>
  19. </div>
  20. <script src="x.js"></script>
  21. <script>
  22. btnGo.onclick = function() {
  23. open(txtURL.value)
  24. }
  25. </script>
  26. </body>
  27. </html>