从 RTE 和 Javascript 开始
我对 Javascript 有点陌生,不是 HTML/CSS 或 PHP/MySQL,只是 JS。我有一个简单的问题。如果我尝试为我正在构建的系统制作自己的 RTE 文本编辑器,有人知道我会从哪里开始吗?书籍,教程,什么都可以。谢谢。
I'm somewhat new to Javascript, not HTML/CSS or PHP/MySQL, just JS. I have a quick question. If I were to try to make my own RTE Text editor for a system that I'm building, does anyone know where I would start out? Books, tutorials, whatever is fine. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Tiny MCE怎么样。您可以按原样使用它或阅读代码 - 它是开源的
how about Tiny MCE. You can use it as is or read the code - it is open source
不要重新发明轮子。
构建一个富文本编辑器需要大量工作,而使其在大多数浏览器中运行则更加困难。
相反,您应该使用现有选项,例如 CKEditor 或 TinyMCE。
如果您想要学习练习,我建议从更简单的事情开始。
Don't re-invent the wheel.
Building a rich-text editor is a lot of work, and making it work in most browsers is even more work.
Instead, you should go with an existing option, such as CKEditor or TinyMCE.
If you want a learning exercise, I recommend starting with something simpler.
Google Closure 库有一个出色的富文本编辑器。 这是一个演示。
The Google Closure library has a great rich text editor. Here is a demo.