我有下面的代码,每次点击按钮时我的手机LED闪烁,但我也需要LED在3秒后自动关闭。不知道怎么做,请帮忙。
input type =“button”onclick =“ipwajax('enabletorch')”value =“打开LED”
答案 0 :(得分: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">