setTimeout不等待指定的毫秒数

时间:2011-02-24 14:02:04

标签: javascript jquery settimeout onkeyup

我希望在几秒钟不活动后使用表单触发提交(使用onKeyup事件)。

我的代码如下:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <title>Title</title>
    </head>
    <body>
        <form id="getJSONForm">
            <textarea rows="1" cols="10" onKeyUp="onKeyUp()"></textarea>
            <input type="submit" value="Submit" id="getJSON" />
        </form>

        <div id="result"  class="functions"></div>

        <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
        <script type="text/javascript">
            $.ajaxSetup ({
                cache: false
            });

            var timer;

            function onKeyUp() {
                stoper();
                timer = setTimeout ( $("#getJSONForm").submit(), 10000 ); 
            }

            function stoper() {
                clearTimeout(timer);
            }

            $("#getJSONForm").submit(function(){
                    $("#result").html("hello");
                    return false;
            });
        </script>
    </body>
</html>

但是......表格会在每个onKeyUp事件中提交。它不会等待计时器达到指定的10,000毫秒。 有办法解决这个问题吗?

1 个答案:

答案 0 :(得分:7)

setTimeout()的第一个参数需要是一个函数对象(或一个字符串,但你不应该使用它)。像这样:

timer = setTimeout(function () {
   $("#getJSONForm").submit();
}, 10000);

您目前正在将$("#getJSONForm").submit()的值传递给setTimeout(),这可能不是您想要的。

除此之外,我建议使用jQuery的事件处理而不是HTML参数。它更优雅,更灵活,更易于维护。你可以这样做:

$('#getJSONForm textarea').keyup(function () {
   // the content of your onKeyUp() function goes here
});

在这个主题上查看the API documentation