Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在客户网站上,当我通过 HTTPS 查看页面时,我为 3 种产品设置的下拉菜单不起作用。
它正在使用 HTTP:http ://bit.ly/WeY3NP
在这里它不适用于 HTTPS:http ://bit.ly/X0iHTo
非常感谢!
JQuery 未正确包含在 https 中。
使用 https:// 时,您可以在 chrome 开发者控制台中看到 $ 未定义。我现在无法测试,但我怀疑如果你以不同的方式包含 JQuery,它会起作用。
改变 :
<script src="http://code.jquery.com/jquery-latest.js"></script>
到:
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>