我需要在原型中编写这个 jQuery 函数。我怎样才能转换它?
submitHandler: function(form) {
$.post("post.php?"+$("#form1").serialize(), {
}, function(response){
if(response==0)
{
alert("security code is wrong!");
return false;
}
}
);
},