1.情景展示
在实际开发过程中,为了调试,有时我们需要看数组中具体包含了哪些数据,但是,
如果我们直接打印该数组对象,显示的结果却不是我们想要的。
如何才能将数组内容打印出来呢?(将数组内容以字符串的形式展示出来)
2.解决方案
实现方式:将数组转换成json字符串
var array = []; var json = {}; $('table td').each(function(){ json = {"name":$(this).attr('title'),"img":$(this).children('img').attr('src').replace('https','http')}; array.push(json); }); JSON.stringify(array);