﻿(function ($) {
    $.fn.extend({
        registTip: function (opt) {
            $(opt.id).focus(function () {
                $("b[v='"+opt.name+"ErrorIco']").hide();
                $("div[v='" + opt.name + "ErrorMsg']").hide();
                $("div[v='" + opt.name + "RightMsg']").show();
                $("b[v='" + opt.name + "RightIco']").hide();
            })
            $(opt.id).blur(function () {
                $("div[v='" + opt.name + "RightMsg']").hide();
                var nameVal = $(opt.id).val();
                if (nameVal != '') {
                    if (!opt.callback()) {
                        $("div[v='" + opt.name + "ErrorContent']").text(opt.validateMsg);
                        $("div[v='" + opt.name + "ErrorMsg']").show();
                        $("b[v='" + opt.name + "ErrorIco']").show();
                    } else {
                        $("b[v='" + opt.name + "RightIco']").show();
                    }
                } else {
                    $("b[v='" + opt.name + "ErrorIco']").show();
                    $("div[v='" + opt.name + "ErrorContent']").text('该项不允许为空')
                    $("div[v='" + opt.name + "ErrorMsg']").show();
                }
            })
        }
    });
})(jQuery)
