有时候遇到家里宽带是公网端口,但是域名不能使用80和443,这样的话我们可以利用一台免费的主机或者小机子搭建个站点,存放个html文件即可,打开域名后就是网站首页,避免了端口解析和高昂的服务器费用
html代码如下http://bt.kayouba.cn:880/替换成你的网址即可
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
iframe {
width: 100%;
height: 100vh;
border: none;
}
body {
overflow: hidden;
}
</style>
</head>
<body>
<iframe id="myIframe" src="http://bt.kayouba.cn:880/" frameborder="0"></iframe>
<script>
// 监听 iframe 加载完成事件
document.getElementById('myIframe').onload = function () {
// 获取 iframe 的文档对象
var iframeDoc = this.contentDocument || this.contentWindow.document;
// 设置 iframe 文档的 overflow 属性为 hidden
iframeDoc.body.style.overflow = 'hidden';
};
</script>
</body>
</html>