easyui validatebox的两个方法.移除验证和还原验证

$.extend($.fn.validatebox.methods, {
    remove: function (jq, newposition) {
        return jq.each(function () {
            $(this).removeClass("validatebox-text validatebox-invalid").unbind('focus').unbind('blur');
        });
    },

    reduce: function (jq, newposition) {
        return jq.each(function () {
            var opt = $(this).data().validatebox.options;
            $(this).addClass("validatebox-text").validatebox(opt);
        });
    }
}); 

用法:

$('#id').validatebox('remove'); 
$('#id').validatebox('reduce');

 

 

posted on 2012-07-17 19:50  AlexGeng  阅读(2957)  评论(0编辑  收藏  举报

导航