UIWebView通过JS语句获取网页(html)的某些数值
Posted 刚刚888
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UIWebView通过JS语句获取网页(html)的某些数值相关的知识,希望对你有一定的参考价值。
//To get string from the title of the html page: NSString *currentURL = [theWebView stringByEvaluatingjavascriptFromString:@"document.getElementsByTagName(‘title‘)[0][removed];"]; //To get string from class name: NSString *someHTML = [theWebView stringByEvaluatingJavaScriptFromString:@"document.getElementsByClassName(‘class name‘)[0][removed];"]; //To get string from element id: NSString *html = [theWebView stringByEvaluatingJavaScriptFromString:@"document.getElementById(‘div id‘).textContent=‘‘"];
以上是关于UIWebView通过JS语句获取网页(html)的某些数值的主要内容,如果未能解决你的问题,请参考以下文章
UIWebView中JS与OC交互 WebViewJavascriptBridge的使用