在https的网站中引用http路径的js或css会导致不起作用,其形如:

<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>

解决办法:
将http:去掉,改为

<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>

即可,实时证明可用,例如https://www.bjhi.gov.cn/。

相关文章:

  • 2022-01-25
  • 2021-09-13
  • 2022-12-23
  • 2021-06-21
  • 2021-05-20
  • 2022-12-23
  • 2022-01-23
猜你喜欢
  • 2022-12-23
  • 2021-07-20
  • 2021-07-10
  • 2022-12-23
  • 2021-11-28
  • 2023-03-25
相关资源
相似解决方案