<small id='YwJfz'></small><noframes id='YwJfz'>

  • <tfoot id='YwJfz'></tfoot>
      <i id='YwJfz'><tr id='YwJfz'><dt id='YwJfz'><q id='YwJfz'><span id='YwJfz'><b id='YwJfz'><form id='YwJfz'><ins id='YwJfz'></ins><ul id='YwJfz'></ul><sub id='YwJfz'></sub></form><legend id='YwJfz'></legend><bdo id='YwJfz'><pre id='YwJfz'><center id='YwJfz'></center></pre></bdo></b><th id='YwJfz'></th></span></q></dt></tr></i><div id='YwJfz'><tfoot id='YwJfz'></tfoot><dl id='YwJfz'><fieldset id='YwJfz'></fieldset></dl></div>
      • <bdo id='YwJfz'></bdo><ul id='YwJfz'></ul>

      <legend id='YwJfz'><style id='YwJfz'><dir id='YwJfz'><q id='YwJfz'></q></dir></style></legend>

        iphone - 从 uiwebview 文本字段获取数据

        时间:2023-10-22
        • <bdo id='5tOG3'></bdo><ul id='5tOG3'></ul>

          • <small id='5tOG3'></small><noframes id='5tOG3'>

            1. <tfoot id='5tOG3'></tfoot><legend id='5tOG3'><style id='5tOG3'><dir id='5tOG3'><q id='5tOG3'></q></dir></style></legend>
                  <tbody id='5tOG3'></tbody>
                <i id='5tOG3'><tr id='5tOG3'><dt id='5tOG3'><q id='5tOG3'><span id='5tOG3'><b id='5tOG3'><form id='5tOG3'><ins id='5tOG3'></ins><ul id='5tOG3'></ul><sub id='5tOG3'></sub></form><legend id='5tOG3'></legend><bdo id='5tOG3'><pre id='5tOG3'><center id='5tOG3'></center></pre></bdo></b><th id='5tOG3'></th></span></q></dt></tr></i><div id='5tOG3'><tfoot id='5tOG3'></tfoot><dl id='5tOG3'><fieldset id='5tOG3'></fieldset></dl></div>

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

                  问题描述

                  正在开发一个将 HTML 页面加载到 uiwebview 中的应用程序 - 该 html 文件包含文本文件和下拉列表、文本框等.

                  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).

                  谢谢

                  推荐答案

                  你可以使用[UIWebView stringByEvaluatingJavascriptFromString:]方法,通过执行javascript获取值.

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

                  示例:如果你的 html 是:

                  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 文本字段获取数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:在 iOS 中更改 JavaScript 警报对话框标题 下一篇:需要 UIWebView 中的内容快速显示

                  相关文章

                1. <small id='pYpnL'></small><noframes id='pYpnL'>

                        <bdo id='pYpnL'></bdo><ul id='pYpnL'></ul>
                      <tfoot id='pYpnL'></tfoot>
                      <legend id='pYpnL'><style id='pYpnL'><dir id='pYpnL'><q id='pYpnL'></q></dir></style></legend>
                    1. <i id='pYpnL'><tr id='pYpnL'><dt id='pYpnL'><q id='pYpnL'><span id='pYpnL'><b id='pYpnL'><form id='pYpnL'><ins id='pYpnL'></ins><ul id='pYpnL'></ul><sub id='pYpnL'></sub></form><legend id='pYpnL'></legend><bdo id='pYpnL'><pre id='pYpnL'><center id='pYpnL'></center></pre></bdo></b><th id='pYpnL'></th></span></q></dt></tr></i><div id='pYpnL'><tfoot id='pYpnL'></tfoot><dl id='pYpnL'><fieldset id='pYpnL'></fieldset></dl></div>