我将This JSBin Project中的代码复制到桌面上的 3 个文件中:index.html、style.css、script.js
我还在 index.html 中包含了这些行:
<link rel="stylesheet" href="style.css">
<script type="text/javascript" src="script.js"></script>
但是当我在浏览器中打开 index.html 时,脚本和样式文件似乎不起作用。
我将This JSBin Project中的代码复制到桌面上的 3 个文件中:index.html、style.css、script.js
我还在 index.html 中包含了这些行:
<link rel="stylesheet" href="style.css">
<script type="text/javascript" src="script.js"></script>
但是当我在浏览器中打开 index.html 时,脚本和样式文件似乎不起作用。
jsBin 默认省略http:
URI 中的更多关于协议的相对 URL
<script src="//code.jquery.com/jquery.min.js"></script>
你需要添加它:
<script src="http://code.jquery.com/jquery.min.js"></script>
对于所有其他标签也是如此script
(如果您正在从环境中link
查看页面)file:
看到这个 jsBin http://jsbin.com/kumoyogegu/1/edit去文件 > 下载 > 并从桌面运行它。
(否则,通过省略http:
您应该在上传到实时服务器或从localhost工作后正确看到您的页面)