JQuery 对话框中的富文本编辑器

发布于 2024-08-19 07:39:49 字数 322 浏览 2 评论 0原文

我正在尝试在 jquery 对话框中获取富文本编辑器。我目前正在尝试小型 mce。当我不初始化tiny mce 时,文本区域将显示带有HTML 字符的文本。

当我初始化tiny mce 时,文本区域中不会显示任何内容。关于如何在对话框中获取文本编辑器有什么想法吗?

<textarea id="reason" rows="8" cols="35" name ="reason">test</textarea>

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

I'm trying to get a rich text editor in a jquery dialog box. I'm currenty trying tiny mce. When I don't initialize tiny mce the text area displays the text with the HTML characters.

When I do initialize tiny mce nothing is displayed in the text area. Any ideas on how to get a text editor in the dialog box?

<textarea id="reason" rows="8" cols="35" name ="reason">test</textarea>

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

少女的英雄梦 2024-08-26 07:39:49

尝试在对话框打开事件时初始化 mce。像这样:

$('.selector').dialog({
   //... other options ...
   open: function(event, ui) { 
     tinyMCE.init({
        mode:"textareas",
        theme:"advanced",
     }); 
   }
   //.... other options ...
});

看看这是否对您有帮助......

try to initialize mce on open event of dialog. Like this:

$('.selector').dialog({
   //... other options ...
   open: function(event, ui) { 
     tinyMCE.init({
        mode:"textareas",
        theme:"advanced",
     }); 
   }
   //.... other options ...
});

see if this helps you...

↙厌世 2024-08-26 07:39:49

您可能应该尝试在打开对话框时初始化tinyMCE 编辑器。也许是这样的:

   $('.selector').dialog({
        open: function(event, ui) { 
         tinyMCE.init({
           mode:"textareas",
           theme:"advanced",
         }); 
        }
   });

You should probably try to initialize the tinyMCE editor when the dialog is opened. Maybe something like this:

   $('.selector').dialog({
        open: function(event, ui) { 
         tinyMCE.init({
           mode:"textareas",
           theme:"advanced",
         }); 
        }
   });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文