1

我的页眉中有这个脚本:

<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
    $(document).idleTimeout({
        inactivity: 30000,
        noconfirm: 10000,
        sessionAlive: 10000
    });
});

但它会产生错误,我不明白为什么。错误是这样的:

Uncaught TypeError: Object [object Object] has no method 'idleTimeout'

我正在使用jQueryjquery-1.10.2.min.js

感谢帮助。

更新 感谢您的帮助,这是脚本源路径中的拼写错误。

4

3 回答 3

5

idleTimeout is not a jQuery default function you need to download this plugin

idleTimeout

于 2013-08-27T08:38:11.550 回答
1

我在 github 上看到了这个项目,示例页面也使用了 jQueryUI

你把它放在你的标题中了吗?你有没有把它放在你的 jquery-1.10.2.min.js 之后?

于 2013-08-27T08:49:27.950 回答
1

简单的包含你的idleTimeout插件 js

<html>
<head>
      <script src="includes/ui/flat/js/plugins/timeut/jquery-idleTimeout.js"></script>
</head>
<body></body>
</html>
于 2013-08-27T08:43:50.987 回答