开发者

programmatically handling a text field within a uiwebview

I have a webpage with a text field and a submit button. That webpage is loaded开发者_StackOverflow within a UIWebView.

How would I programmatically press the submit button for that webpage?

Alternatively, how would I programmatically make the text field within the webpage the first responder and display the soft keyboard? Just programmatically re-create the same behavior as if the user had touched the text field on the webpage.

I would like to make the assumption that the source of the page is unknown.

This is not a UITextField it is just a within the webpage that is displayed in a UIWebView.

Thanks in advance.


If you know the source of the page, you can use UIWebView's stringByEvaluatingJavascriptFromString. For example:

NSString *focusTextField = @"document.getElementById('textFieldID').focus();";
[webView stringByEvaluatingJavascriptFromString:focusTextField];


I'm not sure if my question was clear, but this was the answer that worked for me:

jScriptString = [NSString stringWithFormat:@"var field = document.activeElement;" 
                     "field.value='%@';", symbol.data];
    [myWebView stringByEvaluatingJavaScriptFromString:jScriptString];
    jScriptString = [NSString stringWithFormat:@"document.activeElement.form.submit();"];
    [myWebView stringByEvaluatingJavaScriptFromString:jScriptString];
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜