<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> </head> <body> <script type="text/javascript"> //json2.js // ie8 以及以下的ie版本 才需要引入该JS //原文: //Language Standard - Fifth Edition was adopted by the ECMA General Assembly //in December 2009. //支持 ECMAScript 5 的游览器,已经内置了该方法 //地址:https://www.w3school.com.cn/js/js_es5.asp var d = { name: "123", age: 13 }; console.log(JSON.stringify(d)); </script> </body> </html>
如图: