使用 TinyMCE 时未获取文本区域的帖子值


Not getting post value of textarea when using TinyMCE

我使用TinyMCE这是我的代码:-

 tinyMCE.init({
    // General options
    mode : "textareas",
    theme : "advanced"
}); 

这是我的HTML代码:-

<textarea name="terms" id="elm1"  rows="15" cols="30" width="100%" ></textarea>

问题是当我做这样的事情时,我没有获得这个文本区域的发布值:-

print_r($_POST['terms']);

看起来您需要在提交表单之前立即致电tinymce.triggerSave()