<style> @import url('https://fonts.googleapis.com/css?family=Raleway:300');
p {
font-family: 'Raleway', sans-serif;
font-size: 400%;
color: ;
}
</style>
&#13;
<!DOCTYPEhtml>
<embed src="Chamelion.mp3" autostart="true" loop="true" width="2" height="0">
<center>
<p>SPRING BREAK:</p>
</center>
<center>
<p id="final"></p>
</center>
&#13;
<embed src="Chamelion.mp3" autostart="true" loop="true"
width="2" height="0">
</embed>
<script src="spring.js" type="text/javascript"></script>
<style>
@import url('https://fonts.googleapis.com/css?family=Raleway:300');
p{
font-family: 'Raleway', sans-serif;
font-size: 400%;
color: ;
}
</style>
<center><p>SPRING BREAK:</p></center>
<center><p id="final"></p></center>
<center><img src="bunny.jpg" width="300"></center>
&#13;
您好, 我写的这个程序计算了春假前的时间。我把下面的代码行放在我的html中,但这似乎无法链接到我的js文件。在这里的代码片段它可以工作,但我试图使用外部脚本。 对不起,有大块代码。一切都有帮助!
的Seb
编辑: 代码在我的编辑器中:
IdGlobalProtocols
答案 0 :(得分:1)
将行放在标记
之前的末尾r'[-+]?\d+\.\d*'
答案 1 :(得分:1)
问题似乎是您在文档对象模型中存在目标final
之前加载了脚本。
将下面的代码放在<body>
元素的最后一行:
<body>
...
...
...
<script src="spring.js" type="text/javascript"></script>
</body>