Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用带有 jQuery 的 TinyMCE 编辑器 3.5 版。当我尝试更改编辑器的内容时遇到问题。我收到了来自 AJAX 请求的一些内容,然后我想把它放在可编辑区域。所以我写:
#('#my-textarea-id').html(ajax_result); // OR #('#my-textarea-id').val(ajax_result);
在我使用它的前两次它工作正常,但之后它不会改变并保持在第一个选定的值上。这很奇怪。什么可能导致问题?
你需要使用tinymce.get('#my-textarea-id').setContent(ajax_result);
tinymce.get('#my-textarea-id').setContent(ajax_result);