-1

我想使用我的 iOS 应用程序登录(2 UITextfields 用户名/密码)到网站(UIWebview)。我该怎么做呢?任何建议和/或文件都会很棒。

4

1 回答 1

1

您可以在 UIWebView 中执行 javascript 以自动填写用户名和密码并提交表单

代码将如下所示

//autofill the form
[webView stringByEvaluatingJavaScriptFromString: @"document.formName.username.value = 'username'"];
[webView stringByEvaluatingJavaScriptFromString: @"document.formName.password.value = 'password'"];
[webView stringByEvaluatingJavaScriptFromString: @"document.formName.submit()"];

注意:formName:是表单名称 username:是用户名文本的 id 密码:是密码文本的 id

于 2013-06-29T18:59:13.933 回答