iframe说找不到文件而不是显示网站

时间:2015-12-08 05:52:08

标签: html iframe

我想在html页面中显示整个网站。但它正在查看我的本地资源并显示未找到的文件。

<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<style>
body {
    margin: 0;            /* Reset default margin */
}
iframe {
    display: block;       /* iframes are inline by default */
    background: #000;
    border: none;         /* Reset default border */
    height: 100vh;        /* Viewport-relative units */
    width: 100vw;
}
</style>

<head>
    <meta charset="utf-8" />
    <title>Test page</title>
</head>
<body>
    <iframe src="http://stackoverflow.com/questions/3982422/full-screen-iframe" />
</body>
</html>

1 个答案:

答案 0 :(得分:1)

如果您更改了网址中的任何内容。请清除缓存并重试。 (如果你没有使用http://首先使用,现在添加了它)