在jQuery中removeAttr(x)与attr(x,”)

前端之家收集整理的这篇文章主要介绍了在jQuery中removeAttr(x)与attr(x,”)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
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是一种更自我记录的方法.但是,我可以看到其他人正在思考相反的情况.

原文链接:https://www.f2er.com/jquery/179143.html

猜你在找的jQuery相关文章