easyui验证的删除和恢复

昨天群里讨论easyui验证动态的添加和删除时,群主给出了一个地址,在此做个标记

 

$.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'); //恢复

 原地址为http://easyui.btboys.com/post-79.html

你可能感兴趣的:(easyui)