以下のようなフォームがあります。
<form id="gb">
<div><input type="text" name="a" value="" /></div>
<div><input type="text" name="b" value="" /></div>
<div><input type="submit" name="s" value="Submit" /></div>
</form>
そして、シリアル化に jquery.serialize() メソッドを使用しています:
$('form#gb').submit(function() {
$catch = $(this).serialize();
/* This produces a query string:
a=XXXX&b=XXXXX */
...
/* i want to validate a & b here */
...
$.ajax({
/* My Ajax Code */
});
});
ajax アクションの前に a & b の値を検証したいのですが、どうすればよいですか?