jquery沒法獲取kindeditor編輯器中textarea值的解決辦法

jsp頁面:javascript

 <script>
  KindEditor.ready(function(K) {
   K.create('textarea[id="content2"]', {
    cssPath : '${pageContext.request.contextPath}/resources/kindeditor/plugins/code/prettify.css',
    uploadJson : '${pageContext.request.contextPath}/resources/kindeditor/jsp/upload_json.jsp',
    fileManagerJson : '${pageContext.request.contextPath}/resources/kindeditor/jsp/file_manager_json.jsp',
    afterBlur: function(){this.sync();//假如沒有這一句,獲取到的id爲content的值空白}
   });
   prettyPrint();
  });
 </script>css

<textarea id="content「 textarea>java

<script type="text/javascript">json

$("#content").val();jsp

 </script>編輯器

 

 

afterBlur: function(){this.sync();函數

這一句的做用:當失去焦點時執行 this.sync();
這個函數做用是同步KindEditor的值到textarea文本框。
官方文檔解釋:
sync()
將編輯器的內容設置到原來的textarea控件裏。
參數: 無this

相關文章
相關標籤/搜索