我在我的项目中使用 jquery 主题滚轮,我注意到它正在创建一个 Chrome 警告:
The page at https://mysite/ displayed insecure content from http://static.jquery.com/ui/themeroller/images/themeGallery/theme_90_dark_hive.png.
最糟糕的是,它使“绿色横幅”(安全站点)再次变为白色。
所以我一直在研究,我发现这个问题的根源在于jquery.ui.themeswitcher.js
它有一个带有非 SSL URL 的变量:
imgPrefix:"http://static.jquery.com/ui/themeroller/images/themeGallery/theme_90_",
如果我将其更改为“https”,则不会加载图像(实际上,似乎没有启用该协议)。所以问题是:是否有任何启用 HTTPS 的站点可以让我获取文件?