<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="author" content="智能社 - zhinengshe.com" /> <meta name="copyright" content="智能社 - zhinengshe.com" /> <title>智能社 - www.zhinengshe.com</title> <script> var strJson = ‘{"username":"zns","pwd":123456,"age":18}‘; var strJson = "{‘username‘:‘zns‘,‘pwd‘:123456,‘age‘:18}"; // eval console.log(typeof strJson) //string var json = eval("("+strJson+")");//转为json console.log(typeof json) //object document.write(JSON.stringify(json)); var strJson = JSON.stringify(json);//json转为字符串 console.log(strJson) //{"username":"zns","pwd":123456,"age":18} console.log(typeof strJson) //string </script> </head> <body> </body> </html>
时间: 2024-11-08 22:42:33