简体   繁体   English

jquery html 用于 ipad 的 textarea 插件

[英]jquery html textarea plugin for ipad

Has anyone found html textarea plugin that works with iPad?有没有人找到适用于 iPad 的 html textarea 插件?

If i use any plug-in to convert textarea to html rich editor, it hides textarea and adds iframe in place of it.如果我使用任何插件将 textarea 转换为 html 富编辑器,它会隐藏 textarea 并添加 iframe 代替它。 When i click on iframe in windows i can add/edit text like a textarea.当我点击 windows 中的 iframe 时,我可以像 textarea 一样添加/编辑文本。 Where as in iPad i click on it it doesn't pop up keyboard as its not a textbox or textarea instead its iframe.在 iPad 中,我单击它时不会弹出键盘,因为它不是文本框或文本区域,而是 iframe。

i need it for jquery based chat which can run on both computer and iPad.我需要它用于基于 jquery 的聊天,它可以在计算机和 iPad 上运行。 So i need to allow simple formating of text like bold, italic, font etc.所以我需要允许简单的文本格式,如粗体、斜体、字体等。

Mobile Safari in iOS prior to version 5 doesn't support contenteditable or designMode , which is the built-in browser editing functionality that underpins most JavaScript rich text editors.版本 5 之前的 iOS 中的移动 Safari 不支持contenteditabledesignMode ,这是支持大多数 JavaScript 富文本编辑器的内置浏览器编辑功能。 You'll need to find another way, such as drawing your own caret and collecting input in a (possibly off-screen) textarea, which is what Google Docs , ACE and CodeMirror do.您需要找到另一种方法,例如绘制自己的插入符号并在(可能是屏幕外的)文本区域中收集输入,这就是Google DocsACECodeMirror所做的。 This is quite involved though.不过,这涉及到很多。

Another alternative is the Stack Overflow approach, which uses Markdown in a textarea with formatting buttons.另一种选择是 Stack Overflow 方法,它在带有格式化按钮的文本区域中使用 Markdown。

I just stumbled on MarkItUp , which seems to provide a good fall-back HTML (and BBCode) editing mode for mobile browsers that don't support contenteditable properly yet.我刚刚偶然发现MarkItUp ,它似乎为尚不支持contenteditable的移动浏览器提供了一个很好的后备 HTML(和 BBCode)编辑模式。

Looks like a good alternative solution if you want to give you mobile users a slightly better experience than just editing raw HTML.如果您想为移动用户提供比仅编辑原始 HTML 更好的体验,这看起来是一个不错的替代解决方案。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM