如何在哈巴狗中添加一个jquery脚本标签?

时间:2019-01-24 14:45:36

标签: jquery pug

不确定添加脚本标记是否失败,或者是因为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,我不确定为什么。

任何帮助将不胜感激!

2 个答案:

答案 0 :(得分:0)

您的script标签位于 head标签和body标签之间,这是无效的HTML。

放置脚本的标准位置是中,位于body标签的末尾,位于可见的UI标签之后。

答案 1 :(得分:-2)

找出原因。我忘了为express设置静态。