按住按钮时如何获取查询按钮重复发布?

时间:2013-09-25 20:33:24

标签: jquery post arduino

我正在使用POST将命令发送到arduino。我希望在按住按钮时重复执行up命令。这是我正在尝试的......

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<title></title>

        <link rel="stylesheet" href="../templates/mainkibblynibblytemplate/css/kibbly-jquery.css" />
        <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
        <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
    <script type="text/javascript">
        var timeout, clicker = $('#upbutton');

        clicker.mousedown(function () {
                          timeout = setInterval(function () {
                                                $.post('http://192.168.1.77:8888/', {
                                                       text: 'up'
                                                       });
                                                }, 500);

                          return false;
                          });

        $(document).mouseup(function () {
                            clearInterval(timeout);
                            return false;
                            });
        </script>

</head>
<body>
<button id="upbutton">Test</button>
</body>
</html>

2 个答案:

答案 0 :(得分:0)

您可以在JavaScript中使用onkeydown事件来实现此目的。在onkeydown事件中,您可以遍历您想要做的结果。

答案 1 :(得分:0)

你必须将事件mouseup处理为一个按钮并删除“return false”

像这样:

clicker.mousedown(function () {
   timeout = setInterval(function () {
                 $.post('http://192.168.1.77:8888/', {
                       text: 'up'
                 });
              }, 500);
});

clicker.mouseup(function () {
    clearInterval(timeout);
 });