在我的应用中,我希望能够让用户在自定义视图中输入他们的登录信息,然后显示UIWebView。我希望UIWebView以编程方式填入用户的用户名和密码。然后UIWebView应以编程方式单击登录按钮。我一直在努力:
[webView stringByEvaluatingJavaScriptFromString:@"document.L_lbsc_txtUserName.text.value='ANdrew';"];
但它不起作用。我真的不明白stringByEvaluatingJavaScriptFromString
是如何运作的,或者它的目的是什么。
我认为这可能与我在上面的字符串字段填写的内容有关。 以下是我试图访问的网站的源代码:
<div class="lgntxt">
<div style="padding-left:3px;">
<input name="L$lbsc$txtUserName" type="text" value=" -username-" size="10" id="L_lbsc_txtUserName" tabindex="1" class="textbox" onfocus="if(this.value == ' -username-') this.value = ''; Hide('L_lbsc_txtPasswordHelp'); Show('L_lbsc_txtPassword');" onblur="if(this.value == '') this.value = ' -username-';" style="width:80px;"><br>
<img src="/podium/images/spacer.gif" border="0" width="3" height="1"><br>
<input name="L$lbsc$txtPasswordHelp" type="text" value=" -password-" size="10" id="L_lbsc_txtPasswordHelp" tabindex="1" class="textbox" onfocus="Hide('L_lbsc_txtPasswordHelp'); Show('L_lbsc_txtPassword'); document.getElementById('L_lbsc_txtPassword').focus();" style="width:80px;display:;">
<input name="L$lbsc$txtPassword" type="password" size="10" id="L_lbsc_txtPassword" tabindex="2" class="textbox" onkeydown="if ((event.which ? event.which : event.keyCode) == 13) {return false;};" onkeyup="if ((event.which ? event.which : event.keyCode) == 13) {__doPostBack('L$lbsc$btnLogin','');return false;};" onblur="if(this.value == '') {Show('L_lbsc_txtPasswordHelp'); Hide('L_lbsc_txtPassword');}" style="width:80px;display:none;">
</div>
</div>
我正在尝试替换用户名和密码字段。
非常感谢任何帮助。 提前谢谢。
修改 所以我试过这些,但没有一个能起作用:
[webView stringByEvaluatingJavaScriptFromString:@"document.myForm.myText.value='text from Obj-C';"];
[webView stringByEvaluatingJavaScriptFromString:@"document.getElementById('L$lbsc$txtUserName').value='ANdrew';"];
答案 0 :(得分:5)
该方法接受JavaScript,在文档的上下文中执行它,然后将结果返回给您。看来你的JavaScript是错的。尝试:
[webView stringByEvaluatingJavaScriptFromString:@"document.getElementById('L$lbsc$txtUserName').value='ANdrew';"];
如果您不确定方法的作用,请转到the iOS reference library,找到the class reference for the class you are using,然后向下滚动到the description of the method you are using。
答案 1 :(得分:3)
Bil,我能够让我的工作与下面的工作。基本上,Id为'logon-field'
的元素就是这样。我将JavaScript分成多行,以便我可以插入我的变量(来自UITextField's
用户输入的值在我的自定义屏幕中,在我的UIWebView
之上)并连接。我将以下代码放在视图控制器中的textFieldShouldReturn
:方法中,以便在用户输入文本字段之前不会运行此代码。
NSString *logonJSStart = @"document.getElementById('logon-field').value='";
NSString *logonWithValue = [logonJSStart stringByAppendingString:self.logon.text];
NSString *logonJSFinal = [logonWithValue stringByAppendingString:@"';"];
[webView stringByEvaluatingJavaScriptFromString:logonJSFinal];