仅适用于iframe

时间:2013-04-20 08:34:52

标签: iframe

有没有办法让网页只能通过iframe使用?基本上,如果您直接转到iframe源,您将无法看到内容,但如果您通过iframe查看该网站,您能够看到该内容。

jQuery或Javascript解决方案将是完美的,我必须能够编辑源代码。

1 个答案:

答案 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表示浏览器的最顶层窗口