开发者

Can a UIWebView web form be populated programmatically?

If you have a UIWebView, and load a web page with a form on it, can you programmatically populate that form? Either with objective-c or java开发者_运维百科script, or something else?


Code sample:

[webView stringByEvaluatingJavaScriptFromString:@"document.myForm.myText.value='text from Obj-C';"];

You can, basically, execute any JavaScript on your web view...


You can execute javascript with the stringByEvaluatingJavaScriptFromString: method on the UIWebView. This will let you use document.getElementById() etc. to locate and manipulate elements on the page.

0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜