Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
419 views
in Technique[技术] by (71.8m points)

javascript - How to disable "do you want to view only the webpage content that was delivered securely" warning?

My website has complete https and its using outer jquery resource which is http.

In IE 8, when I'm redirecting the site it giving me "do you want to view only the webpage content that was delivered securely" warning How to avoid this?

Is there any script available which solve this problem?

Thanks in Advance.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

There seem to be two possible problem areas and your post doesn't make clear which is the issue:

  • You are referencing a jquery script file hosted on another site which is not secure.

As JamWaffles said, you should simply host a copy of the jquery file on your own site so it can be accessed using https. See this answer for details: https://stackoverflow.com/a/1458356/773798

Or ...

  • You are redirecting from a secure to an unsecure site.

I don't think this is what's causing the problem, because it will generate a different message, but for details on how to redirect from a secure to an unsecure page, see this answer: https://stackoverflow.com/a/3784676/773798


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...