您的位置: 首页 > IT文章 > jQuery真伪数组转换 jQuery真伪数组转换 分类: IT文章 • 2022-02-28 14:02:56 // 真数组转伪数组 [].push.apply(obj,arr); // 伪数组转真数组 [].slice.call(obj);