举个栗子:inArray: function( elem, arr, i ) { return arr == null ? -1 : indexOf.call( arr, elem, i ); },这里明明可以直接写arr.indexOf(elem, i),用call有什么好处? 查看完整描述