无法解决此混合内容问题

Can't solve this mixed content issue

我在加载 js 文件时遇到问题:https://code.jquery.com/jquery-1.11.1.min.js,我在我的网页上这样加载:

<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>

事实上,当我加载我的网页时,我在我的 firefox 控制台中看到这个错误:

Mixed active content « http://ipinfo.io/?callback=jQuery1111014566829645093016_1495038438100&_=1495038438101 » jquery-1.11.1.min.js:4:26952

所以,我尝试了几种解决方案来解决这个问题,

我在 script 标签的 src 属性中用 // 替换了 https://,但是没有用。

然后我怀疑问题是我试图(间接)从我的 https 页面加载 http://ipinfo.io 等,所以我用 [= 更改了所有 http 的出现18=] 在 jquery-1.11.1.min.js,但仍然没有。

jquery-1.11.1.min.js 文件有一个偏移量“4:26952”的指示,但我不知道如何找到它及其含义完全正确(第 4 行,26952 列?但我如何找到它?)

谢谢

我不这么认为

<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>

包含

http://ipinfo.io

所以寻找 http://ipinfo.io 并将其更改为

https://ipinfo.io 

它应该工作正常......