Ajax提交表單時如何將kindeditor編輯器中的內容賦值給textarea

來源:互聯網
上載者:User

KindEditor在Firefox下或者其他瀏覽器下都無法得到textarea文字框的值。

首先描述下我這邊遇到的KindEditor錯誤現象:
1、在IE8/FF下均得不到值;
2、當點擊KindEditor的全屏按鈕切換到全螢幕模式輸入時,再返回正常模式,可以得到值;
3、我用的是jQuery的ajax點擊事件提交表單的,無法得到值;
4、直接用表單的提交按鈕可以得到值。

那麼如何解決上述的這些問題呢?

 代碼如下 複製代碼

<script type="text/javascript">
    KindEditor.ready(function(K){
        K.create('<span class='wp_keywordlink_affiliate'><a href="textarea" title="查看 textarea 中的全部文章" target="_blank">textarea</a></span>[name="content"]', {
            themeType: 'simple',
            resizeType: 1,
            uploadJson: 'common/KEditor/upload_json.php',
            fileManagerJson: 'common/KEditor/file_manager_json.php',
            allowFileManager: true,
            //下面這行代碼就是關鍵的所在,當失去焦點時執行this.sync(),同步輸入的值到textarea中;
            afterBlur: function(){this.sync();}
        });
    });
</script>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.