我想使用 Aloha HTML5 RTE 作为表单元素。 http://aloha-editor.org/index.php
最终归结为“ContentEditable”属性。通常应用为
<section contenteditable="true" id="editable">
<h2>Go ahead, edit away!</h2>
<p>Here's a typical paragraph element</p>
<ol>
<li>and now a list</li>
<li>with only</li>
<li>three items</li>
</ol>
</section>
我希望表单元素具有类似的功能,因此我可以将格式化的 HTML 作为表单名称/值对发送到服务器端。
可行吗?如何 ?