阅读UIWebView TEXT内容

时间:2010-04-13 21:28:39

标签: iphone text uiwebview

我有兴趣只阅读UIWebView的TEXT内容。我该怎么做呢?我在网上找到了很多关于阅读HTML内容的帮助,但我只想要文本。有什么建议吗?

由于

1 个答案:

答案 0 :(得分:13)

获取根节点的.textContent.innerText,而不是.innerHTML

[web stringByEvaluatingJavaScriptFromString:@"document.documentElement.innerText;"];

(顺便说一下,还有一个私人属性webView.text。)