iframe with external page not working

后端 未结 3 1036
心在旅途
心在旅途 2020-11-27 22:13

I\'m tring to embed a webpage in an iframe, but it doesn\'t work at all. internal pages with relative path are displayed normally. but this simple code doesn\'t work:

<
3条回答
  •  失恋的感觉
    2020-11-27 22:37

    Because the internal page had do something to prevent to be put in iframe.

    Maybe a piece of javascript like that

    if (window.top != window.self) {window.top.location = window.self.location;}
    

提交回复
热议问题