0

我有下面的代码,每次单击按钮时我的手机 LED 都会闪烁,但我还需要 LED 在 3 秒后自动关闭。不知道怎么弄,请帮忙。

input type="button" onclick="ipwajax('enabletorch')" value="打开LED"

4

1 回答 1

0

假设ipwajax('enabletorch')启用 LED 并ipwajax('disabletorch')禁用它,你会想要类似的东西

<script language="JavaScript">

  function enableTorch(milliSeconds) {
    ipwajax('enabletorch');
    window.setTimeout("ipwajax('disabletorch');",milliSeconds);
  }

</script>

<input type="button" onclick="enableTorch(3000);" value="Turn on LED">
于 2013-02-07T11:26:25.823 回答