我正在尝试为在给定页面上空闲预定时间长度的用户设置自动注销。我正在使用jade文件来为我的html页面做布局。我试图将idleTimer插件直接链接到文件中。这是我的玉文件的样子:
!!!5
html
head
title #{title}
link(rel='stylesheet', href='/stylesheets/style.css')
script(type="text/javascript", src="http://code.jquery.com/jquery-1.9.x.js")
script(type="text/javascript", src="https://github.com/mikesherov/jquery-idletimer/blob/master/src/idle-timer.js")
script.
$(document).ready(function(){
$.idleTimer(5000);
$(document).bind("idle.idleTimer", function(){
alert("idle");
});
});
我只是试图在此时获得插件的功能,而不是编写任何实际记录用户的内容。使用Express运行此功能并加载页面时,不会生成任何警报。我不确定我包含JQuery和插件的方式是否正确,或者可能是jade文件中JQuery部分的语法可能是错误的。感谢任何建议。
答案 0 :(得分:0)
https://github.com/mikesherov/jquery-idletimer/blob/master/src/idle-timer.js
是一个HTML文件,没有JavaScript。
http://code.jquery.com/jquery-1.9.x.js
也是404 -