在所有文本区域之上自动初始化富文本编辑器,包括通过 ajax 加载的文本区域
我正在开发一个ajax重型网络应用程序,并且希望有textarea
(使用class="ui-richtext"
)自动初始化TinyMCE。
这对于正常加载的文本区域来说很容易,但是对于使用ajax加载之后加载的内容又如何呢?
我正在思考以下问题:(我正在使用jquery)
$("textarea.ui-richtext").live("ajaxComplete", function()
{
$(this).tinymce({...});
});
不幸的是,这似乎不起作用。有什么想法吗?
这是我的第一篇文章,如果我需要添加更多信息,请告诉我
I'm developing an ajax heavy web app, and would like to have textarea
's (with class="ui-richtext"
) automatically initialize TinyMCE.
This is easy for textarea's that are loaded normally, but how about for content that is loaded AFTER the fact using ajax?
I was thinking something along these lines: (i'm using jquery)
$("textarea.ui-richtext").live("ajaxComplete", function()
{
$(this).tinymce({...});
});
Unfortunately this doesn't seem to work. Any ideas?
This is my first post, let me know if I need to add more info
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Live 仅限于 少量活动。
不过你可以这样做:
Live is limited to a small number of events.
You can do something like this though: