jQuery中removeAttr(x)和attr(x,”)之间通常有区别吗?
如果是这样,何时使用每一个?
解决方法
鉴于从jQuery库中删除了removeAttr(见下文).我会说是的.
removeAttr: function( name,fn ) { return this.each(function(){ jQuery.attr( this,name,"" ); if ( this.nodeType === 1 ) { this.removeAttribute( name ); } });
资料来源:Jquery 1.4.3 uncompressed version
虽然它本质上是主观的.我认为使用removeAttr是一种更自我记录的方法.但是,我可以看到其他人正在思考相反的情况.