我的表单中有一个 tinyMce 框,并使用 jquery ajax 提交此表单。
var myDecription=tinyMCE.get('myDescription').getContent();
var descriptionOptions ={beforeSubmit: showDescRequest,success:
showDescResponse};
$('#myForm').ajaxForm(descriptionOptions);
当我在除 IE 8 或 9 之外的所有其他浏览器中使用上述代码提交此表单时,数据已成功保存在 db 中,但在 IE 中数据未成功保存。我正在使用 post 方法保存数据,但使用 post 方法在 Internet Explorer 中没有获得 tinyMce 内容。请帮我。