不確定這是否是實際問題,但我正在使用Epic Editor在我的GAE應用程序中輸入並保存降價(webpy和mako作爲模板引擎)。EpicEditor文本顯示爲 而不是空格
當我提交表單時,EpicEditor的內容填充了一個隱藏的輸入元素,但所有的空格都被
取代。這是一個預期的功能嗎?如果我在EpicEditor網站上查看相同的代碼,它顯然會返回空格而不是
,那麼我的有什麼不同?
<form>
<!-- form elements -->
<input id="content" name="content" type="hidden" value></input>
<div id="epiceditor"></div>
<button type="submit" name="submit" id="submit">submit</button>
</form>
<script type="text/javascript">
$('button#submit').click(function(){
var content = editor.getElement('editor').body.innerHTML; //all the spaces are returned as and breaks are <br>
$('input#content').html(content);
});
</script>
注:我想我的內容降價保存在TextProperty場我的數據存儲和生成的HTML標記時,我檢索使用marked.js
另外,請注意,隨着EpicEditor的發展,編輯器HTML中會有更多的標記可能會添加功能,右鍵單擊菜單等,所以不要依賴HTML內部。 –