1

我正在为 ipad 使用 uiwebview 实现一个文本编辑器。我正在使用一个简单的 javascript 来加粗斜体并在文本下划线。

[webView stringByEvaluatingJavaScriptFromString:@"document.execCommand(\"Bold\")"];

上面的代码用于使文本变为粗体。

现在我也想实现剪切、复制和粘贴。我正在使用此代码进行剪切复制和粘贴。

[webView stringByEvaluatingJavaScriptFromString:@"document.execCommand(\"Cut\")"]; [webView stringByEvaluatingJavaScriptFromString:@"document.execCommand(\"Copy\")"]; [webView stringByEvaluatingJavaScriptFromString:@"document.execCommand(\"Paste\")"]; 但它不起作用。我使用了错误的命令参数还是有什么方法可以实现它?我知道有一个弹出菜单提供了所有这些功能,但我想禁用这个弹出菜单并想自己使用。

谢谢

4

1 回答 1

0

在 UIWebView 中禁用用户选择

在这里你可以找到禁用复制过去的菜单项

谢谢

于 2012-08-29T13:28:15.053 回答