pluck(property) ⇒ array
获取对象集合中每一个元素的属性值。返回值为 null或undefined值得过滤掉。
$('body > *').pluck('nodeName') // => ["DIV", "SCRIPT"] // implementation of Zepto's `next` method $.fn.next = function(){ return $(this.pluck('nextElementSibling')) }
这是一个Zepto的方法,不是jquery的api