判断UIwebView点击位置元素的tagName

];UIWebView 中有时需要根据点击的链接,坐单独的处理,,比如判断图片,可以根据位置取的对应的元素,可取元素的tagName, src取得结点名称及链接

CGPoint pt = [sender locationInView:self.webView];        
     NSString *jsn = [NSString stringWithFormat:@"document.elementFromPoint(%f, %f).tagName", pt.x, pt.y];
     NSString * tagName = [self.webView stringByEvaluatingJavaScriptFromString:jsn];

你可能感兴趣的:(判断UIwebView点击位置元素的tagName)