使用 jScrollpane 时 IE 中的安全警告

发布于 2024-10-31 17:05:30 字数 842 浏览 1 评论 0原文

我在我的页面上使用 JSrollpane (一个 jquery 插件)。使用此插件的源文件会导致 IE 中出现安全警告 - “此网页包含不会使用安全 HTTPS 连接传递的内容,这可能会危及整个网页的安全性”

我检查了使用 http 获取的任何媒体资源但它不在那里。

我的页面是 https://login.salesforce.com/?ec=302&startURL=/visualforce/session%3Furl%3Dhttps%253A% 252F%252Faexp.ap1.visual.force.com%252Fapex%252Faexp__test_Offer&un=ashok_bommali%40amex.cms&pw=Infy@789

我使用的源文件是 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.

my page is https://login.salesforce.com/?ec=302&startURL=/visualforce/session%3Furl%3Dhttps%253A%252F%252Faexp.ap1.visual.force.com%252Fapex%252Faexp__test_Offer&un=ashok_bommali%40amex.cms&pw=Infy@789

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

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

发布评论

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

评论(3

屋檐 2024-11-07 17:05:30

您链接的文件没有 https 协议。改成这样,原来如此……

https://github.com/vitch/ jScrollPane/raw/master/script/jquery.jscrollpane.min.js

或者,删除协议并让浏览器自行解决...

//github.com/vitch/jScrollPane/raw/master/script/jquery.jscrollpane.min.js

The file you are linking does not have the https protocol. Change it so it does, so it is...

https://github.com/vitch/jScrollPane/raw/master/script/jquery.jscrollpane.min.js

Alternatively, drop the protocol and let the browser figure it out...

//github.com/vitch/jScrollPane/raw/master/script/jquery.jscrollpane.min.js

一杆小烟枪 2024-11-07 17:05:30

如果您直接链接到 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.

ぺ禁宫浮华殁 2024-11-07 17:05:30

@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

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