如何在Web视图中为选定的文本加下划线

时间:2014-11-06 06:34:45

标签: ios objective-c uiwebview underline

我使用代码加载请求

[self.webview loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.wezeit.com/contentClient.php?postId=76949"]]];

我使用下面的代码为文字加下划线

- (void)note:(id)sender{
     NSString *result = [self stringByEvaluatingJavaScriptFromString:@"document.execCommand(\"Underline\")"];
     NSLog(@"result %@",result);
}

但它不起作用。为什么呢?

0 个答案:

没有答案