0
MVC3, Jquery 1.4.4 및 유휴 타이머 플러그인을 사용하고 있습니다. 자습서, 코드 예제를보고 내가 잘못 어디로 갔는지 알아 내려고의 약 2 시간 후에idleTimer가 작동하지 않고 타이머가 시작되지 않습니다. 검사 할 때 "메소드가 없습니다"
$(document).ready(function() {
//Deals with Idle session
var timeout = 5000;
$(document).bind("idle.idleTimer", function() {
alert('idle');
});
$(document).bind("active.idleTimer", function() {
alert('active');
});
$.idleTimer(timeout);
});