IE6 中的非安全项目
我的网站是 https,所以我必须仔细检查它并确保页面上的所有内容都是安全的。这适用于除 IE6 之外的所有浏览器,IE6 会给出错误,指出该页面同时包含安全和非安全项目。我在此页面上找不到不安全的项目,这让我发疯!谁能找出是什么原因造成的吗?
该网站是 http://preview.tinyurl.com/4kk5u7q
谢谢
my site is https and so I had to go through it and make sure everything on the page was secure. This worked for every browser except IE6, which gives an error saying that the page contains both secure and non-secure items. I cannot find a non-secure item on this page and it is driving me mad! Can anyone spot whats causing it?
The site is http://preview.tinyurl.com/4kk5u7q
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当我尝试浏览页面时(使用 OSX 上的 Safari,以防万一),我看到有一些资源被描述为
about:blank
。 IIRC,IE6 认为该来源不安全。 (我还在其中一个内联脚本中遇到语法错误。)When I try browsing the page (with Safari on OSX, in case it matters) I see that there are some resources which are described as
about:blank
. IIRC, IE6 thinks that that source is insecure. (I also get a syntax error in one of the inlined scripts.)同意克里斯的观点。
此错误会影响 和 元素。
IE 检查属性“src”是否指向实际页面。即使“src”属性丢失,它也不会通过。尝试以下操作:
只需创建一个名为“blank.html”或任何您想要的名称的空白页面。
那么当出现时,可以将“src”属性指向空白页。或
示例如下:
这应该可以完成工作;)
Agreed with Chris.
This bug affects both <FRAME> and <IFRAME> element.
IE checks whether the attribute "src" points to a realistic page or not. It won't pass even if "src" attribute is simply missing. Try the followings:
Just create a blank page named "blank.html" or whatever you want.
Then you can point "src" attribute to the blank page when <FRAME> or <IFRAME> element is being created.
Example as below:
<frame src="blank.html" id="foo" name="foo" >
This should do the job;)