


TinyMCE submits AjaxForm and fails to obtain data solution_javascript skills
This article analyzes the solution to the problem that TinyMCE cannot obtain data when submitting AjaxForm. Share it with everyone for your reference. The specific analysis is as follows:
Before using AjaxForm, I made a small web form for comment submission. The comment content was edited using TinyMCE. In order to increase the user experience a little bit, just use AjaxForm to implement Ajax submission. But something unexpected happened. That is, every time you submit, the first time you submit, AjaxForm will not be able to obtain the currently edited comment content, that is, the content in TextArea. You have to click submit again to submit the content of TextArea.
The key is that the content on TinyMCE is not updated to the TextArea before submission. So I wanted to see if AjaxForm has event binding before submission. I found that in the beforeSubmit event, the content of formData has been filled in. Although I can fill in the content of the current TinyMCE here, I always feel that it is not very pretty. solution.
In order to find out if there are other ways to solve this problem, I checked the source code of AjaxForm and found that the author of AjaxForm has proposed a unified solution to this problem. The specific source code is as follows:
1. The js code is as follows:
// convenient for use with rich editors like tinyMCE or FCKEditor
varveto = {};
this.trigger('form-pre-serialize', [this, options, veto]);
if (veto.veto) {
log('ajaxSubmit: submit vetted via form-pre-serialize trigger');
return this;
}
2. Similar to FCKEditor:
$('#commentForm').ajaxForm(options);
// Bind the form-pre-serialize event and save the tinyMCE data to the textarea before triggering the form-serilaize event
$('#commentForm').bind('form-pre-serialize', function(event, form, options, veto) {
tinyMCE.triggerSave();
});
I hope this article will be helpful to everyone’s JavaScript programming design.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Causes and solutions for errors when using PECL to install extensions in Docker environment When using Docker environment, we often encounter some headaches...

Solution to permission issues when viewing Python version in Linux terminal When you try to view Python version in Linux terminal, enter python...

When using Scapy crawler, the reason why pipeline persistent storage files cannot be written? Discussion When learning to use Scapy crawler for data crawler, you often encounter a...

How to avoid being detected when using FiddlerEverywhere for man-in-the-middle readings When you use FiddlerEverywhere...

Fastapi ...

Loading pickle file in Python 3.6 environment error: ModuleNotFoundError:Nomodulenamed...

Use Python's subprocess module to execute wmic...

The reason and solution to the valueError:toomyvalueestounpack(expected2) error when using pyecharts' Map...
