function dom2json() { let root = document.getElementById('jsContainer'); return JSON.parse(JSON.stringify(analysisDom(root))) } function analysisDom(dom) { let templete; if (dom.nodeType == 1) { templete = { tag: '', attributes: {}, children: [] }; templete.tag = dom.localName; let len = dom.attribu...