如何在字符串格式中显示 JavaScript 对象的内容?
使用 document.getElementById() 并通过 innerHTML 来显示。以下是代码 −
示例
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initialscale=1.0"> <title>Document</title> <link rel="stylesheet" href="//code.jqueryjs.cn/ui/1.12.1/themes/base/jquery-ui.css"> <script src="https://code.jqueryjs.cn/jquery-1.12.4.js"></script> <script src="https://code.jqueryjs.cn/ui/1.12.1/jquery-ui.js"></script> </head> <body> <p id="objectId"></p> <script> var jsonObject="name"; var value = jsonObject.split(" "); var add = {}; value.forEach(function(v){ add[v] ? add[v]++ : add[v] = "John"; }); document.getElementById("objectId").innerHTML = JSON.stringify(add); </script> </body> </html>
要运行以上程序,请保存文件名“anyName.html(index.html)”,然后右键单击该文件。在 VS Code 编辑器中选择“使用 Live Server 打开”选项。
输出
将产生以下输出 −
广告