iPhone“GO”超载按钮执行操作

发布于 2024-10-11 06:54:59 字数 152 浏览 4 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

桃酥萝莉 2024-10-18 06:54:59

为您的 UITextField 设置一个委托对象(指向您的视图控制器),并使用方法

- (BOOL)textFieldShouldReturn:(UITextField *)textField

-textFieldShouldReturn 将在用户点击“Go”或“Return”之前调用。请记住返回“是”。

Set a delegate object (point to your view controller) for your UITextField and use the method

- (BOOL)textFieldShouldReturn:(UITextField *)textField

-textFieldShouldReturn will be called just before the user the user taps the "Go" or "Return". Remember to return "YES".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文