不起作用-6ren"> 不起作用-如果你写在HTML5中,iOS上safari输入法的键盘如下。 提交按钮是“搜索”。 顺便说一下,我也在尝试在 Nuxt.js 中创建一个搜索表单,并将其标记在组件中,如下所示。 -6ren">
gpt4 book ai didi

html - Nuxt.js:<输入类型 ="search"> 不起作用

转载 作者:行者123 更新时间:2023-11-28 23:33:08 24 4
gpt4 key购买 nike

如果你写<input type="search">在HTML5中,iOS上safari输入法的键盘如下。

enter image description here

提交按钮是“搜索”。

顺便说一下,我也在尝试在 Nuxt.js 中创建一个搜索表单,并将其标记在组件中,如下所示。

<div class="search-form">
<form
@submit.prevent
@keyup="onKey($event)">
<input
v-model="keyword"
:placeholder="search form"
type="search"
@keypress="setCanMessageSubmit($event)">
</form>
</div>

但是,键盘显示“return”而不是“search”,如下所示。
enter image description here

这是为什么?
有办法解决吗?

最佳答案

尝试将 action 属性添加到 form 标记中。

<div class="search-form">
<form
action="."
@submit.prevent
@keyup="onKey($event)">
<input
v-model="keyword"
:placeholder="search form"
type="search"
@keypress="setCanMessageSubmit($event)">
</form>
</div>

我的 fiddle :https://jsfiddle.net/pompopo/2b0yc6oq/7/

关于html - Nuxt.js:<输入类型 ="search"> 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55803713/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com