JQuery:获取POST页面上#Content字段的内容 时间:2011-11-16 作者:giorgio79 我通过这个jquery调用获得了#内容字段html:jQuery("#content").html() 这似乎在“添加新帖子”页面上失败了。有关于如何获取#content div内容的提示吗?干杯 2 个回复 最合适的回答,由SO网友:Geert 整理而成 部门#editorcontainer 包含常规文本区域#content 和iframe#content_ifr.这个#content 加载页面时,将填充帖子的保存内容。这意味着调用时不会返回对内容的任何实时编辑jQuery("#content").html(). 出于同样的原因,对于新帖子,您会得到一个空字符串。您真正需要查找实时更新内容的地方是iframe,它由WYSIWYG编辑器使用。方法如下:jQuery(\'#content_ifr\').contents().find(\'#tinymce\').html(); 另请参见:jquery/javascript: accessing contents of an iframe. SO网友:Diego Garcia 我的代码在以下表单中运行良好:tinyMCE.triggerSave(); txt = $(\'#myTextarea\') .contents() .find(\'#tinymce\') .html() .replace(\'<br data-mce-bogus="1">\', \'\') ; if (console && console.log) console.log(txt); 结束 文章导航