我有带有 contenteditable 的 webview 并使用 javascript 进行富文本编辑。它适用于以下一些命令,例如“粗体”和“斜体”:
[webview stringByEvaluatingJavaScriptFromString"document.execCommand('Bold')"];
[webview stringByEvaluatingJavaScriptFromString"document.execCommand('Italic')"];
但不知何故下面的“上标”和“下标”,它不起作用:
[webview stringByEvaluatingJavaScriptFromString"document.execCommand('superscript')"];
[webview stringByEvaluatingJavaScriptFromString"document.execCommand('subscript')"];
谁知道,在iOS下,我们有没有类似的Rich-Text Editing in Mozilla ,这样我就可以知道哪些命令在 Safari-UIWebview 下可以工作?
Best Answer-推荐答案 strong>
刚刚在我的 iOS7.1 iPad 上测试了这个页面:
http://quirksmode.org/dom/execCommand/
上标和下标都有效。看源码,执行如下命令:document.execCommand("superscript", false, null);
关于ios - 具有 contenteditable 的 UIWebview - 上标和下标不起作用,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/22430956/
|