开发者

Set text for a textfield in UIWebView

开发者 https://www.devze.com 2023-03-07 11:18 出处:网络
I have a UIWebView and I want to set one of it\'s text field to certain text. Is that even possible? If so, how can I do that开发者_如何转开发?

I have a UIWebView and I want to set one of it's text field to certain text. Is that even possible? If so, how can I do that开发者_如何转开发? Thanks


Yes you can set the text for a textfield in the UIWebView using javascript

As an example if you have a textfield in this form

<input id="textFieldID" type="text" value="TextValue"/>

Setting value:

[theWebView stringByEvaluatingJavaScriptFromString:@"document.getElementById('textFieldID').value = 'Hello World'"]

Getting value:

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


In Swift-5 with WKWebView use this

To set text field

webView.evaluateJavaScript("document.getElementById('textFieldID').value = 'Hello'") { (result, error) in
   print(result) //This will Print Hello
}

To get the value of text field

webView.evaluateJavaScript("document.getElementById('textFieldID').value") { (result, error) in
   print(result) //This will Print value of text field
}
0

精彩评论

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

关注公众号