msg是一个对象var descriptionMsg = JSON.stringify(msg);descriptionMsg打印为:{"title":"aaaaaaa","image":"xxxxxx.png","content":"vvvvvv"} 为一个string但是document.write(descriptionMsg.title);或者document.write(descriptionMsg['title']);都打印为:undefined这是为什么?
1 回答
交互式爱情
TA贡献1712条经验 获得超3个赞
descriptionMsg 已经是一个字符串了,自然就不可能有 descriptionMsg.title;
console.log(msg.title) 试试?
添加回答
举报
0/150
提交
取消