Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
谁能告诉我如何使用表单将 html 代码转换为 json obj。
例如:
如果这是我的 HTML 代码:
<div class="title">#Title 1</div> <div class="content"><p>Some Content</p></div>
我想把它转换成 Json obj
[{"title":"#Title 1","content":"<p>some content<\/p>"}]
尝试使用此工具;
http://json.fastfrag.org/
嗯,我刚刚搜索了你,有大量的网站可以帮助你。我发现这个特别有用。不过它需要 Jquery,我不确定你是否熟悉它。
使用 jQuery 将 HTML 表单转换为 JSON 和 POST