隐藏内容被代理阻止的 iframe
我有一个带有 iframe 的网页。 这些 iframe 用于显示一些外部网站数据。
但是,当这些外部服务器在网络中被阻止时,就会出现问题,它会给出“代理服务器拒绝连接”的错误。 我觉得不太好。
我想隐藏所有这些被阻止的 iframe,或者想在那里显示一些替代数据。
I have a webpage with iframes.
These iframes are for showing some external website data.
But problem arise when those external servers get blocked in a network it gives a error that "The proxy server is refusing connections".
It does not look good to me.
I want to hide all these blocked iframes or want to show some alternate data there.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
无法检查页面是否未加载。但是,可以使用
onload
事件处理程序。重要的是不要依赖 JQuery,因为 JQuery 也是必须加载的外部源。将此代码添加到最后一个 IFRAME 元素之后的
标记中(通常位于正文末尾)。代码:
小提琴:http://jsfiddle.net/3vnrg/
编辑
您的代理似乎发送状态代码为 200 的 HTTP 页面。另一种选择是包含 CSS 文件,并检查 CSS 变量是否存在:
HTML:
JavaScript(在加载所有资源后执行此代码):
It's not possible to check whether a page has not loaded. However, it's possible to use
onload
event handlers.It's important to not rely on JQuery, because JQuery is also an external source which has to be loaded. Add this code within
<script>
tags after the last IFRAME element (often, at the end of the body). Code:Fiddle: http://jsfiddle.net/3vnrg/
EDIT
Your proxy seems to send HTTP pages with status code 200. Another option is to include the CSS file, and check whether a CSS variable exists or not:
HTML:
JavaScript (execute this code after all resources have been loaded):