比如我有
var prevIoUs = $(this).prev('td'); var next = $(this).next('td');
那么我如何将两组结果合并为一组呢?
var all = $.merge(prevIoUs,next);