-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
41 lines (38 loc) · 1.14 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>基于Web的Linux远程访问系统</title>
<style>
#iframeTop{
width: 100%;
height: 70px;
}
#iframeLeft{
width: 35%;
height: 700px;
float: left;
}
#iframeContent{
width: 65%;
height: 700px;
}
</style>
<body>
<div>
<iframe id="iframeTop" name="iframeTop" frameborder="0" src="top.html"></iframe>
<iframe id="iframeLeft" name="iframeLeft" frameborder="0" src="https://mblog.ricardoz.site/category/Linux/"></iframe>
<iframe id="iframeContent" name="iframeContent" frameborder="0" src="https://iaas.cloud.tencent.com/cloudshell"></iframe>
</div>
<script>
function setCookie(cookieString, canCrossSite) {
document.cookie = `${cookieString}`;
if(canCrossSite) {
document.cookie = `${cookieString}; SameSite=None; Secure`;
}
}
//设置samesite属性
//setCookie("samesite=None", true);
</script>
</body>
</html>