摘要:
artEditor.js是一款行動端的富文本編輯器,支援圖片上傳,後面會增加表情、小影片等功能。最近有朋友回饋artEditor是否支援表單提交,當然是支援的,在未開發該功能之前,你可以像下面這樣來實現表單提交
1 2 3 4 5 | $( '.submit' ).on( 'click' , function (e) {
e.preventDefault();
$( '.hidden' ).val($( '#artEditor' ).getValue());
$(this).submit();
});
|
登入後複製
新功能:
新增formInputId參數,此參數表示form隱藏域的id,會將編輯器內容放到隱藏域中,如下:
1 2 3 4 5 6 7 8 9 10 | <form action= "" >
<input type= "hidden" id= "target" >
<div id= "artEditor" >
</div>
</form>
<script>
$( '#artEditor' ).artEditor({
formInputId: 'target'
});
</script>
|
登入後複製
相關閱讀:
jQuery 行動端artEditor富文本編輯器
關於ArtEditor富文本編輯器增加表單提交功能小編就給大家介紹這麼多,希望對大家有幫助!