<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>BFW NEW PAGE</title>
<script type="text/javascript">
//判断是否在iframe中
if (self != top) {
alert("在iframe中打开");
//下面的代码可以强制将iframe父页面地址换成iframe地址,防止别人用iframe打开自己的页面
//parent.window.location.replace(window.location.href);
}
</script>
</head>
<body>
</body>
</html>
网友回复