ios 获取或修改网页上的内容
程序员文章站
2023-12-22 09:54:04
uiwebview是ios最常用的sdk之一,它有一个stringbyevaluatingjavascriptfromstring方法可以将javascript嵌入页面中,...
uiwebview是ios最常用的sdk之一,它有一个stringbyevaluatingjavascriptfromstring方法可以将javascript嵌入页面中,通过这个方法我们可以在ios中与uiwebview中的网页元素交互。
stringbyevaluatingjavascriptfromstring
使用stringbyevaluatingjavascriptfromstring方法,需要等uiwebview中的页面加载完成之后去调用。我们在界 面上拖放一个uiwebview控件。在load中将google mobile加载到这个控件中,代码如下:
- (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。
- (void)webviewdidfinishload:(uiwebview *)webview { nsstring *currenturl = [webview stringbyevaluatingjavascriptfromstring:@"document.location.href"];
2、获取页面title:
nsstring *title = [webview stringbyevaluatingjavascriptfromstring:@"document.title"];
3、修改界面元素的值。
nsstring *js_result = [webview stringbyevaluatingjavascriptfromstring:@"document.getelementsbyname('q')[0].value='朱祁林';"];
4、表单提交:
nsstring *js_result2 = [webview stringbyevaluatingjavascriptfromstring:@"document.forms[0].submit(); "];
5、获取所有的html
nsstring *allhtml = @"document.documentelement.innerhtml"; nsstring *allhtmlinfo = [webview stringbyevaluatingjavascriptfromstring:allhtml];
6、获取网页的一个值
nsstring *htmlnum = @"document.getelementbyid('title').innertext"; nsstring *numhtmlinfo = [webview stringbyevaluatingjavascriptfromstring:htmlnum];
7、插入js代码
上面的功能我们可以封装到一个js函数中,将这个函数插入到页面上执行,代码如下:
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 获取或修改网页上的内容,希望对大家有所帮助