| 123456789101112131415161718192021222324252627 |
- <!doctype html>
- <html>
- <head>
- <title>Page Sandbox Demo</title>
- <meta charset="utf-8">
- <base target="_blank">
- <style>
- #txtURL {
- width: 300px;
- }
- </style>
- </head>
- <body>
- <h1>网页沙盒</h1>
- <div>
- URL:
- <input id="txtURL" value="https://www.google.com.hk">
- <button id="btnGo">Go</button>
- </div>
- <script src="x.js"></script>
- <script>
- btnGo.onclick = function() {
- open(txtURL.value)
- }
- </script>
- </body>
- </html>
|