artEditor是一款基于jQuery的移動端富文本編輯器,支持插入圖片,后續(xù)完善其他功能。接下來通過本文給大家介紹ArtEditor富文本編輯器增加表單提交功能,對arteditor編輯器相關知識感興趣的朋友一起學習吧
摘要:
artEditor.js是一款移動端的富文本編輯器,支持圖片上傳,后面會增加表情、小視頻等功能。最近有朋友反饋artEditor是否支持表單提交,當然是支持的,在未開發(fā)該功能之前,你可以像下面這樣來實現(xiàn)表單提交
$('.submit').on('click', function(e) {
e.preventDefault();
$('.hidden').val($('#artEditor').getValue());
$(this).submit();
});
新功能:
新增formInputId參數(shù),該參數(shù)表示form隱藏域的id,會將編輯器內(nèi)容放到隱藏域中,如下:
<form action="">
<input type="hidden" id="target">
<div id="artEditor">
</div>
</form>
<script>
$('#artEditor').artEditor({
formInputId: 'target'
});
</script>
關于ArtEditor富文本編輯器增加表單提交功能小編就給大家介紹這么多,希望對大家有所幫助!