How to convert selected HTML to Json?

前端 未结 6 873
迷失自我
迷失自我 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条回答
  •  北荒
    北荒 (楼主)
    2020-12-03 14:56

    You can use this following snippet to convert HTML into JSON string

    var HtmlToJsonString = JSON.stringify($("#TextBoxesGroup").html());
    

    You can stored this JSON string into database and edit time you decode it and put on UI page.

提交回复
热议问题