$("input:eq(2)").attr('value',function(i, val){
return '通过function设置' + val
})
function(i, val)的i是什么
第一个参数为当前元素的索引值,第二个参数为属性值,所以这里的i的值是0。