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