https的不安全内容
使用 jsDatePick 时,我正在处理的 Web 应用程序上收到混合内容警告。
我使用过fiddler,可以确认问题不是由任何图像源引起的。 选择日期后,将运行以下行:
window.location.href = "\something\something\day?=date" + this.getSelectedDateFormatted();
这会是问题的原因吗?
I am getting the mixed content warning on a webapp I am working on when using the jsDatePick.
I have used fiddler and can confirm the problem is not caused by any image sources.
When a date is selected the following line is run:
window.location.href = "\something\something\day?=date" + this.getSelectedDateFormatted();
Would this be the cause of the problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
问题似乎出在 JsDatePick .js 文件上。我有同样的问题(混合内容)。不幸的是,我被迫在这个项目中使用 IE 8。父页面是 https,我已将页面最小化为以下内容(这个最小页面仍然会弹出混合内容:
The problem seems to be with a JsDatePick .js file. I have the same issue (mixed content). I'm unfortunately forced to use IE 8 for this project. The parent page is https, and I've minimalized the page to the following (this minimal page still gets the mixed content pop-up:
不,因为未指定协议,所以它应该继承父页面的协议。在页面源中查找任何调用“http://”而不是“https://”的内容。
No, because the protocol is not specified it should inherit the protocol of the parent page. Look for anything calling "http://" instead of "https://" in your page source.