我正在尝试将本地可编辑html
文件加载到上WKWebview
。WKWebview
成功加载html
文件。但是,当我开始在可编辑html
文件中键入内容时,键入的文本周围会出现类似黑色边框的视图。在iOS12上无法重现此问题。
(void)viewDidLoad { [super viewDidLoad]; NSBundle *bundle = [NSBundle mainBundle]; NSURL *indexFileURL = [bundle URLForResource:@"index" withExtension:@"html"]; [self.wkWebView loadRequest:[NSURLRequest requestWithURL:indexFileURL]]; } index.html:Type here
harshith7823.. 5
Type here
在div标签中添加outline:none即可解决此问题。
Type here
在div标签中添加outline:none即可解决此问题。