我的代码中有以下功能。这是一个简化版本:
$.ajax({
url: $form.attr('action'),
dataType: 'json',
type: 'POST',
data: $form.serializeArray(),
success: function (json, textStatus, XMLHttpRequest) {
// delay here
alert("hello");
}
有什么方法可以引入延迟。例如,上述代码延迟 5 秒?
请注意,我需要将此处的 // 延迟一词替换为可能会产生延迟的内容。