我想使用Aloha HTML5 RTE作爲表單元素。 http://aloha-editor.org/index.php如何將「內容編輯」功能集成到HTML表單元素中?
最終歸結爲「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服務器側爲形式名稱/值對。
可行嗎?怎麼樣 ?
你可能會添加一個更改功能的部分,然後填充隱藏的輸入字段?我還沒有與'contenteditable'合作過,所以我不知道。 – 2011-12-21 06:56:40