var student = new Object();
student.name = "张三";
student.age = "25";
student.location = "China";
var json = JSON.stringify(student);
document.location = "object:(" + json + ")";
var student = new Object();
student.name = "张三";
student.age = "25";
student.location = "China";
var json = JSON.stringify(student);
document.location = "object:(" + json + ")";