我正在使用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>
答案 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);
});