复制代码 代码如下:
//扩展jQuery对象方法
jQuery.fn.extend({
txtClear:function(){
jQuery(this).click(function(){
jQuery(this).val('');
});
},
check:function(){
return this.each(function(){this.checked=true;});
},
uncheck:function(){
return this.each(function(){this.checked=false;});
}
});
