iPhone“GO”超载按钮执行操作
我正在使用 html 和 javascript 设计一个应用程序。我有一个登录表单,上面有一个登录按钮。文本字段接受用户名,然后按下登录按钮,就会发生登录操作。然而,我现在想做的是,在 iPhone 中使用虚拟键盘时,单击 GO 按钮也必须启动登录操作。 请让我知道同样的解决方案。 谢谢。
I am designing an application using html and javascript. I have a login form with a Login button on it. A textfield accepts a username and then pressing the login button, login action takes place. However, what i want to do now is that while using the virtual keypad in IPhone, clicking the GO button must initiate the Login action too.
Please let me know the solution for the same.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为您的 UITextField 设置一个委托对象(指向您的视图控制器),并使用方法
-textFieldShouldReturn 将在用户点击“Go”或“Return”之前调用。请记住返回“是”。
Set a delegate object (point to your view controller) for your UITextField and use the method
-textFieldShouldReturn will be called just before the user the user taps the "Go" or "Return". Remember to return "YES".