使用 jScrollpane 时 IE 中的安全警告
我在我的页面上使用 JSrollpane (一个 jquery 插件)。使用此插件的源文件会导致 IE 中出现安全警告 - “此网页包含不会使用安全 HTTPS 连接传递的内容,这可能会危及整个网页的安全性”
我检查了使用 http 获取的任何媒体资源但它不在那里。
我使用的源文件是 http://github.com/vitch/jScrollPane/raw/master/script/jquery.jscrollpane.min .js
对此有什么帮助吗?
谢谢, 苏希尔
I am using JSrollpane (a jquery plugin) on my page. use of source file for this plugin causing a security warning in IE- "this webpage contains content that will not be delivered using s secure HTTPS connection,which could compromise the security of entire webpage"
i checked for any media resources with is fetched using http nut it's not there.
and source file i am using is http://github.com/vitch/jScrollPane/raw/master/script/jquery.jscrollpane.min.js
any help on this?
thanks,
Sushil
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您链接的文件没有
https
协议。改成这样,原来如此……或者,删除协议并让浏览器自行解决...
The file you are linking does not have the
https
protocol. Change it so it does, so it is...Alternatively, drop the protocol and let the browser figure it out...
如果您直接链接到 github 版本,请注意您的 URL 是 SSL 安全的 (https),而 github 的 URL 不是 (http)。确保所有脚本都使用 https:// url,因为 github 确实支持它。
If you are directly linking to the github version, note your URL is SSL-secured (https) while github's one is not (http). Make sure to use https:// url for all the scripts, since github does support it.
@alex 是对的,但你也可以在 JS 中获取 URI 方案,请参阅链接
JavaScript URI 类 或来自服务器端脚本(例如 ASP/JSP)
@alex is right but you can also get URI scheme in JS see link
JavaScript URI class or from Server Side scriptings likes ASP/JSP