この jQuery 関数をプロトタイプで作成する必要があります。どうすれば変換できますか?
submitHandler: function(form) {
$.post("post.php?"+$("#form1").serialize(), {
}, function(response){
if(response==0)
{
alert("security code is wrong!");
return false;
}
}
);
}、