如何使文本框像 Google 文档演示工作区一样可编辑?
我正在开发一个新项目,该项目是制作一个类似 Google 文档演示制作器的演示制作器。我无法找到一种方法使文本框像 Google 文档演示工作区一样可选择和可编辑:
就像上面那个一样。 任何有关此事的帮助将不胜感激。
I am working on on a new project which is to make a presentation maker like of Google docs presentation maker. I was unable to find a way to make the text box selectable and editable like of Google docs presentation workspace:
Like the one above.
Any help regarding this would be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以对 dom 元素使用
contentEditable
属性。这是一个使用它的现场演示(使用 jquery 构建): http://jsfiddle.net/Z9tVM/;
更新:
这是一个不使用任何框架的演示(只是普通的js): http://jsfiddle.net/Z9tVM/2 /
You could use the
contentEditable
attribute for dom elements.Here's a live demo (built using jquery) that's using it : http://jsfiddle.net/Z9tVM/;
UPDATE :
Here's a demo without using any frameworks (just plain js) : http://jsfiddle.net/Z9tVM/2/