不确定添加脚本标记是否失败,或者是因为jquery库。但是,当我将jquery脚本标记添加到我的哈巴狗文件中时,它失败了。没有script标签,它可以完美运行。
html
head
title !{comp}
link(rel='stylesheet', href='http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css')
script(src='http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js')
body
table
tr
th Session
th Num.
th Couple
th Age
th Division
th Dance Studio
th Heat
each event in events
tr
td=event.Session
td=event.CoupleID
td=event.Couple
td=event.Age
td=event.Division
td=event.DanceStudio
td=event.Heat
添加jquery脚本标记后,找不到404,我不确定为什么。
任何帮助将不胜感激!
答案 0 :(得分:0)
您的script
标签位于 head
标签和body
标签之间,这是无效的HTML。
放置脚本的标准位置是在中,位于body标签的末尾,位于可见的UI标签之后。
答案 1 :(得分:-2)
找出原因。我忘了为express设置静态。