日期:2014-05-16 浏览次数:20432 次
var student = new Object(); student.name = "Lanny"; student.age = "25"; student.location = "China"; var json = JSON.stringify(student); alert(student); //"Lanny"--"25"--"China"
var student = new Object(); student.name = "Lanny"; student.age = "25"; student.location = "China"; alert(student);//“object”--"object"--"object"