js小demo-迫使页面总是单独显示,不能被嵌入到iframe中
Posted 十一的杂文录
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js小demo-迫使页面总是单独显示,不能被嵌入到iframe中相关的知识,希望对你有一定的参考价值。
有时候我们的网页会被别人内嵌别人的网页 iframe 中,我们只需要在页面中增加以下js就可以让我们的页面内容单独显示出来,不被嵌入到 iframe中
核心JS代码
<script> if(top.location != self.location){ // 检查当前页面是否处于浏览器顶层 top.location.replace(self.location); // 将浏览器顶层页面内容替换为当前页面内容 } </script>
完整示例:
a.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
我是外层网页
<iframe src="./1.html" frameborder="0"></iframe>
</body>
</html>
1.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> 我是内嵌网页 <script> if(top.location != self.location){ // 检查当前页面是否处理浏览器顶层 top.location.replace(self.location); // 将浏览器顶层页面内容替换为当前页面内容 } </script> </body> </html>
在浏览器中打开 a.html,后的结果:--会直接打开1.html
以上是关于js小demo-迫使页面总是单独显示,不能被嵌入到iframe中的主要内容,如果未能解决你的问题,请参考以下文章
嵌入式GUI LVGL『Text Area文本区域控件』介绍