struts2 kindeditor teatarea拿不到值问题。
生活随笔
收集整理的這篇文章主要介紹了
struts2 kindeditor teatarea拿不到值问题。
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
2019獨角獸企業(yè)重金招聘Python工程師標(biāo)準(zhǔn)>>>
源:
<script type="text/javascript">var editor;KindEditor.ready(function(K) {editor = K.create('textarea[name="userinfo.introduce"]', {resizeType : 1,allowPreviewEmoticons : false,allowImageUpload : false,afterCreate : function() {var self = this;self.sync();K.ctrl(document, 13, function() {document.forms['addform'].submit();});K.ctrl(self.edit.doc, 13, function() {document.forms['addform'].submit();});}, items : ['fullscreen','source','preview','|','fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline','removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', 'insertorderedlist','insertunorderedlist', '|', 'emoticons', 'image', 'link']});}); </script>HTML代碼
<textarea name="userinfo.introduce" style="width:700px;height:200px;visibility:hidden;"></textarea>這樣子在后臺的strts2的action中拿到的是空。
只有再加上這段語句才可以獲得。
afterBlur:function(){ this.sync(); }加上后:
<script type="text/javascript">var editor;KindEditor.ready(function(K) {editor = K.create('textarea[name="userinfo.introduce"]', {resizeType : 1,allowPreviewEmoticons : false,allowImageUpload : false,afterCreate : function() {var self = this;self.sync();K.ctrl(document, 13, function() {document.forms['addform'].submit();});K.ctrl(self.edit.doc, 13, function() {document.forms['addform'].submit();});},afterBlur:function(){ this.sync(); }, items : ['fullscreen','source','preview','|','fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline','removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', 'insertorderedlist','insertunorderedlist', '|', 'emoticons', 'image', 'link']});}); </script>
?
?
轉(zhuǎn)載于:https://my.oschina.net/mcbeathtao/blog/75632
總結(jié)
以上是生活随笔為你收集整理的struts2 kindeditor teatarea拿不到值问题。的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。