index.html 434 B

1234567891011121314151617181920212223242526
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>JS Proxy</title>
  5. <meta charset="utf-8">
  6. <script src="x.js"></script>
  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>
  21. btnGo.onclick = function() {
  22. open(txtURL.value)
  23. }
  24. </script>
  25. </body>
  26. </html>