UIWebView是iOS最常用的SDK之一,它有一个stringByEvaluatingJavaScriptFromString方法可以将javascript嵌入页面中,通过这个方法我们可以在iOS中与UIWebView中的网页元素交互。
stringByEvaluatingJavaScriptFromString
使用stringByEvaluatingJavaScriptFromString方法,需要等UIWebView中的页面加载完成之后去调用。我们在界 面上拖放一个UIWebView控件。在Load中将google mobile加载到这个控件中,代码如下:
1
2
3
4
5
6
7
8
9
10
|
- ( void )viewDidLoad
{
[ super viewDidLoad];
webview.backgroundColor = [UIColor clearColor];
webview.scalesPageToFit =YES;
webview.delegate =self;
NSURL *url =[[NSURL alloc] initWithString:@ "http://www.google.com.hk/m?gl=CN&hl=zh_CN&source=ihp" ];
NSURLRequest *request = [[NSURLRequest alloc] initWithURL:url];
[webview loadRequest:request];
}
|
我们在webViewDidFinishLoad方法中就可以通过javascript操作界面元素了。
1、获取当前页面的url。
1
2
|
- ( void )webViewDidFinishLoad:(UIWebView *)webView {
NSString *currentURL = [webView stringByEvaluatingJavaScriptFromString:@ "document.location.href" ];
|
2、获取页面title:
1
|
NSString *title = [webview stringByEvaluatingJavaScriptFromString:@ "document.title" ];
|
3、修改界面元素的值。
1
|
NSString *js_result = [webView stringByEvaluatingJavaScriptFromString:@ "document.getElementsByName('q')[0].value='朱祁林';" ];
|
4、表单提交:
1
|
NSString *js_result2 = [webView stringByEvaluatingJavaScriptFromString:@ "document.forms[0].submit(); " ];
|
5、获取所有的html
1
2
|
NSString *allHtml = @ "document.documentElement.innerHTML" ;
NSString *allHtmlInfo = [webView stringByEvaluatingJavaScriptFromString:allHtml];
|
6、获取网页的一个值
1
2
|
NSString *htmlNum = @ "document.getElementById('title').innerText" ;
NSString *numHtmlInfo = [webView stringByEvaluatingJavaScriptFromString:htmlNum];
|
7、插入js代码
上面的功能我们可以封装到一个js函数中,将这个函数插入到页面上执行,代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
|
if ([title compare: @ "Google" ]==NSOrderedSame ) {
[webView stringByEvaluatingJavaScriptFromString:@ "var script = document.createElement_x('script');"
"script.type = 'text/javascript';"
"script.text = " function myFunction() { "
"var field = document.getElementsByName('q')[0];"
"field.value='朱祁林';"
"document.forms[0].submit();"
"}" ;"
"document.getElementsByTagName_r('head')[0].appendChild(script);" ];
[webView stringByEvaluatingJavaScriptFromString:@ "myFunction();" ];
}
|
看上面的代码:
a、首先通过js创建一个script的标签,type为'text/javascript'。
b、然后在这个标签中插入一段字符串,这段字符串就是一个函数:myFunction,这个函数实现google自动搜索关键字的功能。
c、然后使用stringByEvaluatingJavaScriptFromString执行myFunction函数。
以上所述是小编给大家介绍的ios 获取或修改网页上的内容,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对服务器之家网站的支持!
原文链接:http://www.cnblogs.com/equiller/archive/2016/12/28/6229451.html