Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
送信ボタンが 2 つあるフォームがあります。送信ボタンは「はい」または「いいえ」で、ユーザーは表示される質問に答える必要があります。送信ボタンが誤ってクリックされないように、数秒後にポップアップするようにプログラムするにはどうすればよいですか (実際に発生します)。
これはあなたのために働くはずです。
$('#yourForm').function() { var mapped = $(this); setTimeout(function() { mapped.submit(); }, 5000); // will trigger after 5 seconds! });