How to assign the content in the kindeditor editor to textarea when submitting a form through Ajax?

Source: Internet
Author: User

This article describes how to assign the content in the kindeditor editor to the textarea method when submitting a form through Ajax. For more information, see.

KindEditor cannot get the textarea text box value in Firefox or other browsers.

First, describe the KindEditor error:
1. No value is obtained in IE8/FF;
2. When you click the full screen button of KindEditor to switch to full screen mode, the system returns to normal mode to obtain the value;
3. I used jQuery's ajax click event to submit a form and cannot get the value;
4. directly use the form submit button to obtain the value.

So how can we solve these problems?

The Code is as follows: Copy code

<Script type = "text/javascript">
KindEditor. ready (function (K ){
K. create ('<span class = 'wp _ keywordlink_affiliate'> <a href = "textarea" title = "view all articles in textarea" target = "_ blank"> textarea </> </span> [name = "content"] ', {
ThemeType: 'simple ',
ResizeType: 1,
UploadJson: 'common/KEditor/upload_json.php ',
FileManagerJson: 'common/KEditor/file_manager_json.php ',
AllowFileManager: true,
// The following line of code is the key. when the focus is lost, execute this. sync () and synchronize the input value to textarea;
AfterBlur: function () {this. sync ();}
});
});
</Script>

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.