objective-c – 在UIWebView中为textfield设置文本

前端之家收集整理的这篇文章主要介绍了objective-c – 在UIWebView中为textfield设置文本前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个UIWebView,我想将其中的一个文本字段设置为某些文本.这是甚么可能吗?如果是这样,我该怎么办?
谢谢

解决方法

是的,您可以使用 javascript在UIWebView中设置文本框的文本

举个例子,如果你有一个这样的格式的文本框

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

设定值:

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

获得价值:

NSString* value = [theWebView stringByEvaluatingJavaScriptFromString:@"document.getElementById('textFieldID').value"];
原文链接:https://www.f2er.com/c/112188.html

猜你在找的C&C++相关文章