attr(name[,value]):value(任意|函数) $('*').attr('title',function(index,previousValue){ return previousValue+' I am element '+index+' and my name is '+(this.id || 'unset'); }); 也可以用传入的对象指定的属性和值来设置匹配集中所有元素相应的特性值.(参数值也可以是一个函数引用) $('input').attr({ value:'',…