<!DOCTYPE html> <html> <head> <script> window.onload = function() { var link = "http://www.intethink.net/webview.aspx?id=a1a6a3da-e0b4-45a0-831d-2f21b5319743&autoswitch=true"; window.location.href = link; } </script> </head> <body> <div id="viewGroup"></div> </body> </html> 调整代码 link 的连接是页面初始的时候通过接口查出来的怎么调整代码
时间: 2023-08-14 17:07:02 浏览: 327
HTML参考手册
如果你想要在页面初始化时通过接口获取链接并打开该链接,你可以使用 AJAX 请求来获取链接,然后通过 JavaScript 设置 `window.location.href` 来实现页面跳转。
以下是一个示例代码,演示了如何使用 AJAX 请求获取链接,并在页面初始化时打开该链接:
```html
<!DOCTYPE html>
<html>
<head>
<script>
window.onload = function() {
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = function() {
if (xhr.readyState === 4 && xhr.status === 200) {
var link = xhr.responseText;
window.location.href = link;
}
};
xhr.open("GET", "your_api_endpoint_here", true);
xhr.send();
}
</script>
</head>
<body>
<div id="viewGroup"></div>
</body>
</html>
```
在这个示例中,我们使用了 `XMLHttpRequest` 对象来发送 GET 请求,并在请求成功后获取返回的链接。你需要将 `"your_api_endpoint_here"` 替换为实际的接口地址,该接口需要返回一个包含链接的响应。然后将这段代码保存为一个 HTML 文件,在浏览器中打开即可实现页面初始化时通过接口获取链接并打开。
阅读全文