溫馨提示×

jquery如何獲取富文本編輯器的內容

養(yǎng)魚的貓咪
936
2021-05-19 18:41:55
欄目: 編程語言

在jquery中獲取富文本編輯器內容的方法:1.新建html項目,引入jquery;2.使用UE.getEditor方法創(chuàng)建富文本編輯器;3.初始化編輯器;4.使用hasContents()方法判斷內容;5.使用getContent()方法獲取富文本編輯器內容;


jquery如何獲取富文本編輯器的內容


具體步驟如下:

1.首先,新建一個html項目,并在項目中引入jquery;



<script type="text/javascript" src="/static/jquery-2.1.4.min.js"></script>

2.引入jquery后,在項目中創(chuàng)建使用UE.getEditor方法創(chuàng)建一個富文本編輯器;


UE.getEditor('editor', {

})


3.富文本編輯器創(chuàng)建好后,對編輯器進行初始化;


UE.getEditor('editor', {

initialFrameWidth:"100%"

})


4.初始化編輯器后,使用hasContents()方法判斷編輯器中是否有內容;


UE.getEditor('editor').hasContents()


5.最后,若編輯器中存在內容,使用getContent()方法即可獲取富文本編輯器的內容;


UE.getEditor('editor').getContent()


相關擴展:

1)以純文本格式獲取編輯器內容


UE.getEditor('editor').getContentTxt()


2)啟用富文本編輯器


UE.getEditor('editor').setEnabled();


3)刪除富文本編輯器


UE.getEditor('editor').destroy();



0