如果您像这样从 google ajax 网站加载 jquery:
<script type="text/javascript" src="http//ajax.googleapis.com/ajax/libs/jquery/1.x.x/jquery.min.js"></script>
在 https 页面上,在某些浏览器中会显示该页面不安全。
从那以后,我已将其修复为像这样加载:
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
它工作正常。
我的问题是,该网站是否会因为非 https 脚本的不当加载而被黑客入侵?