最佳答案
此代码将在密钥上提交您的表单
原文链接:https://www.f2er.com/jquery/428876.html@H_403_17@$('#element').bind('keyup',function() { $('#form').delay(200).submit(); });
@H_403_17@$("#form").submit(function (event) { event.preventDefault(); $.ajax({ type: "post",dataType: "html",url: '/url/toSubmit/to',data: $("#form").serialize(),success: function (response) { //write here any code needed for handling success } }); });
要使用延迟功能,您应该使用jQuery 1.4.传递给延迟的参数以毫秒为单位.