1

我的 Express Web 应用程序的 Jade 文件中有一些 JQuery,但似乎没有被调用。这是玉文件的内容:

extends layout
block content
    p Landing page
    #info Info area
block foot
    a(href="https://localhost:8888/logout", title="logout") Logout

这是布局玉文件:

!!!5
html
    head
        title #{title}
        link(rel='stylesheet', href='/stylesheets/style.css')
        script(type='text/javascript', src="http://code.jquery.com/jquery-1.9.1.min.js")
        script(type='text/javascript', src="/idle-timer.js")
        script(type='text/javascript').
            $(document).ready(function() {
                $(document).idleTimer(10000);
                $(document).on("idle.idleTimer", function(){
                    console.log("alert");
                });

                $(#info).click(function(){
                    $(this).hide();
                });
            });
    body
        header
            h1 Web App Sample
        .container
            .main-content
                block content
            .sidebar
                block sidebar
        footer
            block foot

谁能看到问题可能是什么?也许缩进?

4

1 回答 1

1

在我的手机上很难看到,但是您是否缩进了您的脚本代码,例如:

html
    head
        script(src='jsfile')
        script
            $(document).ready
    body #same level as head!
        header
于 2013-10-31T07:12:50.660 回答