所以我在WebView中加载了内容,然后是
- (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame
调用方法,我想得到正文的类名。
我该怎么做?
答案 0 :(得分:0)
HTML class
属性实际上是javascript DOM API中的className
。
https://developer.mozilla.org/en-US/docs/Web/API/Element/className
所以试试这个
[sender stringByEvaluatingJavaScriptFromString:@"document.body.getAttribute('className')"];