[].slice.call(this);将调用的对象变为this,这一句变成this.slice(), 返回this的整个数组?
基本上是这个意思,
楼主所说的this是通过 selector 获取的jQuery对象, 也就是 this == jQuery.fn.init[num]。所以返回的是包含符合条件的jQuery对象、而jQuery对象是类数组对象、可以使用数组方法。