function(index,text)
jquery封装回调函数的逻辑是这样的:
function text(fn){
//取得索引 i
//取得原来的文本 oldText
fn && fn(i, oldText);
}
应该是的吧