prevent page opening on an iframe?

后端 未结 3 1450
青春惊慌失措
青春惊慌失措 2021-01-06 12:20

How can I prevent page opening on an iframe using PHP? Like Gmail inside an iframe?

3条回答
  •  无人及你
    2021-01-06 13:09

    You can do that with JavaScript

    if( (self.parent && !(self.parent===self))
        &&(self.parent.frames.length!=0)){
        self.parent.location=document.location
    }
    

    This will redirect from page that opens your page in iframe to your page.

提交回复
热议问题