我正在尝试在 html 中读取 json 输入(如https://jsonformatter.curiousconcept.com/)并将其传递给 js 函数以将 json 转换为 html 表。我是 html,js 新手,请帮我阅读 json 输入
<body>
<input type="text" id="jsondata" name="jsondata" />
<input type="button" onclick="CreateTableFromJSON(document.getElementById('jsondata').value)" value="Create Table From JSON" />
<p id="showData"></p>
</body>
<script>
function CreateTableFromJSON(json) {
var x = JSON.stringify(json);
var myJson = JSON.parse(x);
拉莫斯之舞
相关分类