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.
我有一个带有两个提交按钮的表单。提交按钮是是或否,要求用户回答出现的问题。我如何编程提交按钮以在几秒钟后弹出,以确保它们不会意外单击它们(它会发生)。
这应该适合你。
$('#yourForm').function() { var mapped = $(this); setTimeout(function() { mapped.submit(); }, 5000); // will trigger after 5 seconds! });