我使用代码加载请求
[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);
}
但它不起作用。为什么呢?