0
我想使用jquery/javascript來做以下事情,但在找到關於如何完成它的任何信息時遇到了困難。JQuery超時函數
我想創建一個函數,當被調用時,將等待2秒鐘的響應來自用戶(例如按鍵)。如果在2秒內隨時收集到響應,則執行事件A,如果沒有按下按鍵2秒,則執行事件B.
function waitForInput
{
if(response within 2 second timeout?) event a executed
else if (timed out) event b executed
}
使用['setTimeout'(https://開頭開發商。 mozilla.org/en-US/docs/Web/API/window.setTimeout)。 –