jquery拓展器的

      $.fn.disabled=function (){

            return this.each(function (){

             if(typeof this.disabled!="undefined") this.disabled=true;});}

 

jquery 对象  的调用: get  index    $("img")[o]   $("img").get(0)  $("img").index([alt*=sdfsdfs])  ==1

jquery  串联  end() 返回前面的选择 andSelf() 加入前面的选择到目前的选择中去 and ()是 将两个选择合并

filter() not() 方法刚好相反 filter(function(){return this.innerHTML="sdfsdfsdf"})

is() 布尔类型

        

你可能感兴趣的:(jquery拓展器的)