Home  >  Article  >  Web Front-end  >  jquery ajax shortcut way to submit entire form elements_jquery

jquery ajax shortcut way to submit entire form elements_jquery

WBOY
WBOYOriginal
2016-05-16 17:39:241113browse

Copy code The code is as follows:

function submit(){
var formData=$ ("form").serialize();
$("#ac").val("savesearch");
$.ajax({
type: "POST",
url: "/index.aspx",
processData:true,
data:formData,
success: function(data){
$("#result").html("Save successfully");
}
});
}
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn