https的不安全内容

发布于 2024-12-04 16:24:14 字数 238 浏览 3 评论 0原文

使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

雄赳赳气昂昂 2024-12-11 16:24:14

问题似乎出在 JsDatePick .js 文件上。我有同样的问题(混合内容)。不幸的是,我被迫在这个项目中使用 IE 8。父页面是 https,我已将页面最小化为以下内容(这个最小页面仍然会弹出混合内容:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
                      "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head>
<script type="text/javascript" src="jsDatePick.min.1.3.js"></script>

<script type="text/javascript" src="jquery-1.2.1.pack.js"></script>

<script type="text/javascript"> 
window.onload = function()
{
new JsDatePick({
useMode:2,
target:"date_range1",
dateFormat:"%m/%d/%Y"
});

};
</script>

</head>
<body>

<h1> Hey</h1>

</body>
</html>

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:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
                      "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head>
<script type="text/javascript" src="jsDatePick.min.1.3.js"></script>

<script type="text/javascript" src="jquery-1.2.1.pack.js"></script>

<script type="text/javascript"> 
window.onload = function()
{
new JsDatePick({
useMode:2,
target:"date_range1",
dateFormat:"%m/%d/%Y"
});

};
</script>

</head>
<body>

<h1> Hey</h1>

</body>
</html>
梦里寻她 2024-12-11 16:24:14

不,因为未指定协议,所以它应该继承父页面的协议。在页面源中查找任何调用“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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文