1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | $("form").submit(function(){ <pre><code> //エラー初期化 $("input").removeClass("error"); $(":text").filter(".validate").each(function(){ //ID欄が空 $(this).filter(".auctionid").each(function(){ if($(this).val()==""){ $(this).addClass("error"); $("a[rel=tooltip-error]").tooltip("show"); } }); //IDが不正 $(this).filter(".auctionid").each(function(){ if($(this).val() && !$(this).val().match(/[a-zA-Z]+[0-9]{8,8}/)){ $(this).parent().append("<p class='error'>オークションIDが不正です</p>"); $("a[rel=tooltip-error]").tooltip("show"); } }); }); //if($("p.error").size() > 0) { if($("input.error").size() > 0) { // $("p.error").parent().addClass("error"); //$("p.error").parent().addClass("error"); return false; } }); </code></pre> |