如果我不想提交表单,请关闭 uiwebview 中的键盘

发布于 2025-01-02 06:06:24 字数 436 浏览 1 评论 0原文

我正在开发phonegap 中的应用程序。在应用程序中,有一个页面包含两个文本字段和一个图像。没有提交按钮,因为我不想提交表单。所需的工作如下。

  1. 用户点击文本字段,键盘出现。
  2. 单击下图会调用 javascript(jquery method-> $.post()) 函数,该函数从文本字段中选取数据并将其发送到服务器(json)。这意味着我没有提交表格。

虚拟键盘上的“执行”按钮应该用于提交表单。但就我而言,由于我没有提交表单,所以“转到”按钮不起作用,而且看起来不合适。

我想摆脱按钮..它可能会关闭键盘或调用它不支持的 jquery 函数。

我在网上搜索了很多。我开始知道,如果我删除表单标签,“转到”按钮将更改为“返回”按钮,这确实有效,然后“返回”按钮再次看起来很愚蠢。

所以请帮我去掉其中一个按钮(最好是返回按钮)。

I am developing a application in phonegap. In the app, there is a page which contains two textfields and a image. No submit button because I don't want to submit the form. the desired working is as follow..

  1. the user taps the text fields, the keyboard appears.
  2. clicking on the image below calls a javascript(jquery method-> $.post()) function which picks the data from the textfields and send it to server(json). that means I m not submitting the form.

and the go button on the virtual keyboard is supposed to submit the form. But in my case as I m not submitting the form so go button doesn't work and it doesn't look appropriate.

I want to get rid of the button..either it may dismiss the keyboard or call the jquery function which it is not supporting.

I searched a lot over the net. I came to know that if i remove the form tag the go button changes to return button which really worked then the return button again looks dumb.

So please help me to get rid of either of the button(preferably the return button).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

谁的年少不轻狂 2025-01-09 06:06:24

我认为你无法摆脱按钮。您可以做的是将表单中的输入字段与 onsubmit 事件一起使用。此事件应执行 jquery $.post 方法并返回 false 以阻止标准表单提交。这样,您的“执行”按钮实际上就会按照用户期望的方式工作,而您不必禁用它。

I don't think you will be able to get rid off the button. What you could do instead, is to have the input field in form with and onsubmit event. This event should perform the jquery $.post method and return false to prevent standard form submission. This way your go button would actually work the way user expects and you don't have to disable it.

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