老是跳出来  球解决方法... 
<iframe src="http://www.myhabit.com/" height="600" width="1000" ></iframe>

解决方案 »

  1.   

    加了防框架的js代码了if (top.location !== self.location) {
        top.location = self.location.href;
      

  2.   

    查看源代码,就会看到:
    <script>
    //MYHABIT is not allowed inside an IFRAME
    if (top.location !== self.location) {
        top.location = self.location.href;
    }
      

  3.   

    能强制把它放进iframe么 或者怎么让他不跳出来啊
      

  4.   

    沙盒iframe可以做到,HTML5的,IE10+、Chrome、Firefox、Safari都支持。
    只要sandbox的值不是allow-top-navigation就行。iframe sandbox