iphone - 从uiwebview文本字段获取数据 [英] iphone - Getting data from uiwebview textfield

查看:91
本文介绍了iphone - 从uiwebview文本字段获取数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

正在开发一个应用程序,它将HTML页面加载到uiwebview中 - 该HTML文件包含文本字段和下拉列表,文本框等。



如何获得用户在文本字段中输入的值以及从下拉列表中选择的答案(picker)。

谢谢

[UIWebView stringByEvaluatingJavascriptFromString:] 方法并通过执行javascript获取值。



示例:
如果您的html为:

  < HTML> 
< body>
< input id =myIdtype =textvalue =TextValue/>
< / body>
< / html>

以下代码可以为您提供文本字段的值:

  NSString * value = [webView stringByEvaluatingJavaScriptFromString:@document.getElementById('myId')。value]; 


Am developing an app which load a HTML page into uiwebview - that html file contains text-filed and drop-down list, text-boxes etc..

Here How to get values which user has entered in that text-filed and answers selected from drop-down(picker).

Thanks

解决方案

You can use [UIWebView stringByEvaluatingJavascriptFromString:] method and get the values by executing the javascript.

Example: If your html is:

<html>
  <body>
      <input id="myId" type="text" value="TextValue"/>
  </body>
</html>

Following code can get you the value of the text field:

   NSString* value = [webView stringByEvaluatingJavaScriptFromString:@"document.getElementById('myId').value"];

这篇关于iphone - 从uiwebview文本字段获取数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆