JQuery 对话框中的富文本编辑器
我正在尝试在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试在对话框打开事件时初始化 mce。像这样:
看看这是否对您有帮助......
try to initialize mce on open event of dialog. Like this:
see if this helps you...
您可能应该尝试在打开对话框时初始化tinyMCE 编辑器。也许是这样的:
You should probably try to initialize the tinyMCE editor when the dialog is opened. Maybe something like this: