How to redirect page inside iframe to another one but we must stay in iframe

后端 未结 2 588
半阙折子戏
半阙折子戏 2021-02-04 11:25

Could anyone help me? Is it possible to code this? Redirect page inside iframe to another one but we must stay in iframe . Without influence to parent site. I tried many scripts

2条回答
  •  温柔的废话
    2021-02-04 12:19

    If you want the script to run from the frame:

    document.location.href = "http://...";
    

    If you want the parent page to redirect (change) the frame location:

    HTML: