我已经建立了包含我大学的内部网页一个UIWebView,我的代码将在我的用户名精细遍(因为它是一个数字)
NSString *studentNumber = @"639909";
NSString *javaScriptNumber = @"document.getElementById('username').value=%@;";
javaScriptNumber = [NSString stringWithFormat: javaScriptNumber, studentNumber];
[webViewInt stringByEvaluatingJavaScriptFromString: javaScriptNumber];
然而,当我尝试运行相同的代码来填写密码字段,它只会用数字的工作,我的密码是文本,所以当我输入文字什么都不会传递到密码字段。 但是,如果我把我的密码,它似乎工作的所有号码。 有什么在此代码,我需要改变,使其能够通过所有字符作为它目前只通过数字
谢谢
(这是代码的密码)
NSString *password = @"password";
NSString *javaScriptPass = @"document.getElementById('password').value=%@;";
javaScriptPass = [NSString stringWithFormat: javaScriptPass, password];
[webViewInt stringByEvaluatingJavaScriptFromString:javaScriptPass];