gpt4 book ai didi

javascript - 如何在 TinyMCE 4 中设置内容,最好是在 $(document).ready(); 中堵塞?

转载 作者:可可西里 更新时间:2023-11-01 02:55:57 24 4
gpt4 key购买 nike

正如标题所说,我已经查找了 official documentation但它不起作用;这是我的 JavaScript(使用 jQuery)代码:

$(document).ready(function() {
tinymce.init({
element_format: "html",
schema: "html4",
menubar: false,
plugins: 'preview textcolor link code',
selector: 'TEXTAREA#rtf',
toolbar: 'preview | bold italic underline strikethrough | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | blockquote subscript superscript | code'
});
tinymce.activeEditor.setContent($('TEXTAREA#rtf').text());
});
  1. 我已经尝试检查 tinymcetinyMCE(从谷歌搜索)实例,它们都是对象好吧。
  2. 我还尝试检查 tinymce.activeEditortinyMCE.activeEditor,但结果是null!

(咳嗽)不知何故,在我将所有内容恢复到开始的位置后,它现在可以工作了:

$(document).ready(function() {
tinymce.init({
element_format: "html",
menubar: false,
plugins: 'preview textcolor link code',
schema: "html4",
selector: 'TEXTAREA#rtf',
toolbar: 'preview | bold italic underline strikethrough | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | blockquote subscript superscript | code'
});
});

我怀疑是 UA 缓存或 XSLT 转换后的结果缓存导致了这个问题;再次感谢您的宝贵时间!

最佳答案

我找到了更好的解决方案,可以在代码中的任何地方使用(并且不是 hack,不像 setTimeout 技巧)

tinymce.get('tinymce-element-id').on('init',function(e) {
e.target.setContent('my custom content');
});

关于javascript - 如何在 TinyMCE 4 中设置内容,最好是在 $(document).ready(); 中堵塞?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20390743/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com