Prevent iframe “This webpage is not available.” error from displaying on website

后端 未结 2 852
情歌与酒
情歌与酒 2021-01-22 04:50

Is there a way to prevent the error "This webpage is not available." from displaying within an iframe that displayed on another site?

For example, if I have a w

相关标签:
2条回答
  • 2021-01-22 05:11

    If you are doing anything on the server-side you can test that URL and see if it returns a 404 error

    0 讨论(0)
  • 2021-01-22 05:14

    You can use the iframe's onerror="" property to do something creative. Consider this:

    <iframe src="foo.bar" onerror="this.location.reload();" />
    

    Hope this helps

    Edit: This no longer works.

    0 讨论(0)
提交回复
热议问题