How to convert selected HTML to Json?

前端 未结 6 857
迷失自我
迷失自我 2020-12-03 14:27

I want to save part of my html code into json as a file then recap back the html codes for editing. Any idea how can i do it?

6条回答
  •  -上瘾入骨i
    2020-12-03 14:55

    see this link on w3school https://www.w3schools.com/code/tryit.asp?filename=FR0BHTAPG78A

    var myObj, myJSON, myText, obj;
    myText = document.getElementById("xx").innerHTML;
    myObj = {innerHTML:"yyy"};
    myObj.innerHTML = myText;
    myJSON = JSON.stringify(myObj);
    

提交回复
热议问题