如何在没有表单标签的情况下更改 Mobile Safari 键盘中的返回键文本?

发布于 2024-10-29 17:55:02 字数 336 浏览 0 评论 0原文

当我的输入元素获得焦点时,我想更改 Mobile Safari 键盘上的“返回”按钮文本。我知道你可以这样做:

<form action="somewebsite.com">
  <input id='SearchTextBox' type="search"/>
  <input id='SearchButton' type="button" value="Search" />  
</form>

但我不想要表单标签,因为搜索是ajaxian(我不想重新加载页面)。

有谁知道这是否可能?

I would like to change the the "return" button text on the Mobile Safari keyboard when my input element is focused. I know you can do this:

<form action="somewebsite.com">
  <input id='SearchTextBox' type="search"/>
  <input id='SearchButton' type="button" value="Search" />  
</form>

But I don't want the form tag because the search is ajaxian (I don't want to reload the page).

Does anyone know if this is possible?

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

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

发布评论

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

评论(2

娜些时光,永不杰束 2024-11-05 17:55:02

呵呵,应该想到这一点(同事解决了)。只需使用 JavaScript 取消表单提交即可。例如:

<form action="#" onsubmit="return false;">
  <input id='SearchTextBox' type="search"/>
  <input id='SearchButton' type="button" value="Search" />  
</form>

Heh, should have thought of this (coworker solved). Just cancel the form submission with JavaScript. For example:

<form action="#" onsubmit="return false;">
  <input id='SearchTextBox' type="search"/>
  <input id='SearchButton' type="button" value="Search" />  
</form>
北座城市 2024-11-05 17:55:02

您现在可以使用 enterkeyhint

<input enterkeyhint="search" />

还有更多选项,例如“发送”、“执行”等

You can now use enterkeyhint

<input enterkeyhint="search" />

Theres more options like "send", "go", etc

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