JavaScript不能在我的Dropbox托管网站上运行,但CSS正在运行。
我的网站是www.cherrystreetimports.com
公用文件夹是:https://dl.dropboxusercontent.com/u/52143002/html/index.html
答案 0 :(得分:1)
阻止加载混合活动内容" http://fonts.googleapis.com/css?family=Lato:100,300,400" [了解详情] index.html
阻止加载混合活动内容" http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" [了解详情] index.html
您无法在HTTPS网站上通过HTTP加载JavaScript。至少,大多数浏览器都会阻止它。通过HTTPS加载JavaScript。
处理这些事情的最简单方法是使用protocol-relative URLs,例如:
<script src="//example.com/script.js"></script>