jquery ajax同期検証コード

836 ワード

//検証コードfunction isrightvnum(node){
var bol=false;
$.ajax({
    url: "checkvcode.jsp",
    type: "post",
    async: false,
    data: {
        "type": "4",
        'vailnum':node.val()
    }, 
    dataType: "json",
    success: function(rs) {
        if (rs == -1) {
            $(".msg").html("");
            $(node).nextAll("span").attr("class", "ok").html("");
            $(".code").css("border", "1px solid #DCDCDC");
            bol = true;
        } else {
            $(".code").css("border", "1px solid red");
            $(node).nextAll("span").attr("class", "error").html("     !");
        };
    }
});
return bol; 

};