有没有办法让网页只能通过iframe使用?基本上,如果您直接转到iframe源,您将无法看到内容,但如果您通过iframe查看该网站,您将能够看到该内容。
jQuery或Javascript解决方案将是完美的,我做必须能够编辑源代码。
答案 0 :(得分:0)
尝试在网页的头部添加此内容
<script type="text/javascript">
if (top === self) {
alert('Sorry ! WebPage is only accesible via iframe') //if current window is topmost window
window.close();
} else {
alert('Well Done');
}
</script>
self
表示当前窗口,top
表示浏览器的最顶层窗口