📅  最后修改于: 2022-03-11 15:01:15.242000             🧑  作者: Mango
$('#myForm')
.ajaxForm({
url : 'myscript.php', // or whatever
dataType : 'json',
success : function (response) {
alert("The server says: " + response);
}
})
;